public void TestMethodIfPalimdrom() { string slowotestowe = "kajak"; Functions funkcje = new ClassLibrary.Functions(); Assert.IsTrue(funkcje.CheckIfPalindrome(slowotestowe)); }
public void TestMethodIfAnagram() { string pattern = "anagram"; string word = "maaagrn"; Functions funkcje = new ClassLibrary.Functions(); Assert.IsTrue(funkcje.CheckIfAnagram(pattern, word)); }