Exemple #1
0
        public void TestLevel3Positive4()
        {
            bool result = new Level3().TestIsNonEmpty("");

            Assert.IsFalse(result);
        }
Exemple #2
0
        public void TestLevel3Positive3()
        {
            bool result = new Level3().TestIsNonEmpty("foo");

            Assert.IsTrue(result);
        }