コード例 #1
0
        public void IsEmptyTest06()
        {
            NonEmptyTestEnumerable c = new NonEmptyTestEnumerable();
            Action a = () => Condition.Requires(c).IsEmpty();

            a.Should().Throw <ArgumentException>();
        }
コード例 #2
0
        public void IsEmptyTest08()
        {
            NonEmptyTestEnumerable c = new NonEmptyTestEnumerable();

            try
            {
                Condition.Requires(c, "c").IsEmpty("{0} should have one, two or at least some elements :-)");
            }
            catch (ArgumentException ex)
            {
                Assert.IsTrue(ex.Message.Contains("c should have one, two or at least some elements :-)"));
            }
        }
コード例 #3
0
        public void IsEmptyTest06()
        {
            NonEmptyTestEnumerable c = new NonEmptyTestEnumerable();

            Condition.Requires(c).IsEmpty();
        }
コード例 #4
0
        public void IsEmptyTest09()
        {
            NonEmptyTestEnumerable c = new NonEmptyTestEnumerable();

            Condition.Requires(c).SuppressExceptionsForTest().IsEmpty();
        }
コード例 #5
0
        public void IsNotEmptyTest7()
        {
            NonEmptyTestEnumerable c = new NonEmptyTestEnumerable();

            Condition.Requires(c).IsNotEmpty("conditionDescription");
        }