Exemplo n.º 1
0
 static bool TestCase6()
 {
     return(StringUtils.AreMutations("", "") == true);
 }
Exemplo n.º 2
0
 static bool TestCase3()
 {
     return(StringUtils.AreMutations("abc", "bcd") == false);
 }
Exemplo n.º 3
0
 static bool TestCase5()
 {
     return(StringUtils.AreMutations("bcac", "abc") == false);
 }
Exemplo n.º 4
0
 static bool TestCase2()
 {
     return(StringUtils.AreMutations("abc", "bca") == true);
 }