import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
import Example;

class QuizSnippet{
    @Test
    public void testPalindrome{
        assertEquals(true,Example.isPalindrome(""));
        assertEquals(true,Example.isPalindrome("a"));
        assertEquals(true,Example.isPalindrome("abba"));
        assertEquals(false,Example.isPalindrome("lost"));
    }
}