import org.junit.Assert; import org.junit.Test; public class PetTest { @Test public void petSpeakTest(){ Pet test = new Pet(); String expected = "override me!"; String actual = test.speak(); Assert.assertEquals(expected,actual); } }