public void GetResult_WithYesPalindrome_ShouldReturnTrue() { // Arrange var sut = new IsPalindrome(); var s = "abcba"; // Act var result = sut.GetResult(s); // Assert Assert.IsTrue(result, "Result is incorrect"); }