当前位置: 首页>>代码示例>>C#>>正文


C# ExpressionSpecification.XOr方法代码示例

本文整理汇总了C#中ExpressionSpecification.XOr方法的典型用法代码示例。如果您正苦于以下问题:C# ExpressionSpecification.XOr方法的具体用法?C# ExpressionSpecification.XOr怎么用?C# ExpressionSpecification.XOr使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ExpressionSpecification的用法示例。


在下文中一共展示了ExpressionSpecification.XOr方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: XOrTestCase3

        public void XOrTestCase3()
        {
            var left = new ExpressionSpecification<String>( x => false );
            var target = left.XOr( x => false );

            var actual = target.IsSatisfiedBy( String.Empty );
            Assert.IsFalse( actual );
        }
开发者ID:MannusEtten,项目名称:Extend,代码行数:8,代码来源:ISpecification.XOr.Test.cs

示例2: XOrTestCase10

        public void XOrTestCase10()
        {
            var left = new ExpressionSpecification<String>( x => false, "msgLeft" );
            var target = left.XOr( x => true, "msgRight" );

            var actual = target.IsSatisfiedByWithMessages( String.Empty )
                               .ToList();
            Assert.AreEqual( 0, actual.Count() );
        }
开发者ID:MannusEtten,项目名称:Extend,代码行数:9,代码来源:ISpecification.XOr.Test.cs

示例3: XOrTestCase4

        public void XOrTestCase4()
        {
            var left = new ExpressionSpecification<String>( x => true );
            var target = left.XOr( x => true );

            var actual = target.IsSatisfiedByWithMessages( String.Empty )
                               .ToList();
            Assert.AreEqual( 1, actual.Count );
            Assert.AreEqual( "The given object matches both specifications.", actual[0] );
        }
开发者ID:MannusEtten,项目名称:Extend,代码行数:10,代码来源:ISpecification.XOr.Test.cs

示例4: XOrTestCaseNullCheck1

 public void XOrTestCaseNullCheck1()
 {
     var left = new ExpressionSpecification<String>( x => true );
     Func<String, Boolean> expression = null;
     Action test = () => left.XOr( expression );
     test.ShouldThrow<ArgumentNullException>();
 }
开发者ID:MannusEtten,项目名称:Extend,代码行数:7,代码来源:ISpecification.XOr.Test.cs

示例5: XOrTestCase7

        public void XOrTestCase7()
        {
            var left = new ExpressionSpecification<String>( x => false );
            var target = left.XOr( x => false );

            var actual = target.IsSatisfiedByWithMessages( String.Empty )
                               .ToList();
            Assert.AreEqual( 2, actual.Count() );
            Assert.IsNull( actual[0] );
            Assert.IsNull( actual[1] );
        }
开发者ID:MannusEtten,项目名称:Extend,代码行数:11,代码来源:ISpecification.XOr.Test.cs

示例6: XOrTestCaseNullCheck

        public void XOrTestCaseNullCheck()
        {
            var target = new ExpressionSpecification<String>( x => false );
            ExpressionSpecification<String> other = null;

            Action test = () => target.XOr( other );

            test.ShouldThrow<ArgumentNullException>();
        }
开发者ID:MannusEtten,项目名称:Extend,代码行数:9,代码来源:ExpressionSpecification.Test.cs

示例7: XOrTestCase3

        public void XOrTestCase3()
        {
            var target = new ExpressionSpecification<String>( x => false );
            var other = new ExpressionSpecification<String>( x => false );

            var actual = target.XOr( other );
            var result = actual.IsSatisfiedBy( String.Empty );
            Assert.IsFalse( result );
        }
开发者ID:MannusEtten,项目名称:Extend,代码行数:9,代码来源:ExpressionSpecification.Test.cs


注:本文中的ExpressionSpecification.XOr方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。