public void IsEmptyTest06()
        {
            NonEmptyTestEnumerable c = new NonEmptyTestEnumerable();

            Assert.Throws <ArgumentException>(() =>
            {
                Condition.Requires(c).IsEmpty();
            });
        }
        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)
            {
                ex.Message.ShouldContain("c should have one, two or at least some elements :-)");
            }
        }
        public void IsNotEmptyTest7()
        {
            NonEmptyTestEnumerable c = new NonEmptyTestEnumerable();

            Condition.Requires(c).IsNotEmpty("conditionDescription");
        }
        public void IsNotEmptyTest6()
        {
            NonEmptyTestEnumerable c = new NonEmptyTestEnumerable();

            Condition.Requires(c).IsNotEmpty();
        }
        public void IsEmptyTest09()
        {
            NonEmptyTestEnumerable c = new NonEmptyTestEnumerable();

            Condition.Requires(c).SuppressExceptionsForTest().IsEmpty();
        }