public void RunTest02()
        {
            PalindromePermutation test = new PalindromePermutation("hello world");
            var result = test.Run();

            Assert.IsFalse(result);
        }
        public void RunTest03()
        {
            PalindromePermutation test = new PalindromePermutation("Tact Coa");
            var result = test.Run();

            Assert.IsTrue(result);
        }
Esempio n. 3
0
        public void PalindromePermutationTest(string input, bool expectedResult)
        {
            var result = PalindromePermutation.Run(input);

            Assert.Equal(expectedResult, result);
        }