public void PalindromeStringIsPalindromePermuation1TestNull()
        {
            try
            {
                PalindromeIsPalindromePermutation1SimpleComplete.IsPalindromePermutation(null);
            }
            catch
            {
                Assert.IsTrue(true);
                return;
            }

            Assert.Fail();
        }
 public void PalindromeStringIsPalindromePermuation1TestMultipleOdd()
 {
     Assert.IsFalse(PalindromeIsPalindromePermutation1SimpleComplete.IsPalindromePermutation("cbdbce"));
 }
 public void PalindromeStringIsPalindromePermuation1Test3CharNot()
 {
     Assert.IsFalse(PalindromeIsPalindromePermutation1SimpleComplete.IsPalindromePermutation("bcd"));
 }
 public void PalindromeStringIsPalindromePermuation1Test4Char()
 {
     Assert.IsTrue(PalindromeIsPalindromePermutation1SimpleComplete.IsPalindromePermutation("cbbc"));
 }
 public void PalindromeStringIsPalindromePermuation1TestEmptyString()
 {
     Assert.IsTrue(PalindromeIsPalindromePermutation1SimpleComplete.IsPalindromePermutation(string.Empty));
 }