Exemple #1
0
        public void ExH1_TestNegative2()
        {
            bool found = ExH1.InString("The bras basah complex", "bRO");

            Debug.WriteLine("The bras basah complex, bRO");
            Assert.IsFalse(found);
        }
Exemple #2
0
        public void ExH1_TestPositive2()
        {
            bool found = ExH1.InString("The brown fox", "bRO");

            Debug.WriteLine("The brown fox, bRO");
            Assert.IsTrue(found);
        }
Exemple #3
0
        public void ExH1_TestNegative1()
        {
            bool found = ExH1.InString("T", "bRO");

            Debug.WriteLine("T, FOX");
            Assert.IsFalse(found);
        }
Exemple #4
0
        public void ExH1_TestOneChar()
        {
            bool found = ExH1.InString("The brown fox", "o");

            Debug.WriteLine("The brown fox, o");
            Assert.IsTrue(found);
        }