def test_empty_string(self):
     self.assertTrue(is_palindrome_permutation(""))
 def test_not_palindrome_permutation(self):
     self.assertFalse(is_palindrome_permutation("Hello"))
 def test_is_palindrome_permutation(self):
     self.assertTrue(is_palindrome_permutation("W wop P"))