Esempio n. 1
0
        public void LongestPalindromeTest()
        {
            string str      = "samshsaaha"; // TODO: Initialize to an appropriate value
            string expected = "shs";        // TODO: Initialize to an appropriate value
            string actual;

            actual = Program2.LongestPalindrome(str);
            Assert.AreEqual(expected, actual);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }