Exemple #1
0
        public void StartsWithKeywordTest_NotFound()
        {
            string CommandLine = "Some_keyword in this line";
            string Keyword     = "Somekeyword";
            bool   expected    = false;
            bool   actual;

            actual = TokenString.StartsWithKeyword(CommandLine, Keyword);
            Assert.AreEqual(expected, actual);
        }