Example #1
0
        public void TestPermutationWithExtraCharacter()
        {
            string s  = "test";
            string s2 = "tsett";

            bool boolResult =
                PermutationChecker.IsPermutatinEqual2(s, s2);

            Assert.IsFalse(boolResult);
        }
Example #2
0
        public void TestPermutation()
        {
            string s  = "test";
            string s2 = "tset";

            bool boolResult =
                PermutationChecker.IsPermutatinEqual2(s, s2);

            Assert.IsTrue(boolResult);
        }