示例#1
0
        public void TestMethodIfPalimdrom()
        {
            string    slowotestowe = "kajak";
            Functions funkcje      = new ClassLibrary.Functions();

            Assert.IsTrue(funkcje.CheckIfPalindrome(slowotestowe));
        }
示例#2
0
        public void TestMethodIfAnagram()
        {
            string    pattern = "anagram";
            string    word    = "maaagrn";
            Functions funkcje = new ClassLibrary.Functions();

            Assert.IsTrue(funkcje.CheckIfAnagram(pattern, word));
        }