12345678910111213141516171819
  1. import static org.junit.Assert.*;
  2. import org.junit.After;
  3. import org.junit.Before;
  4. import org.junit.Test;
  5. public class PetTest
  6. {
  7. private Pet pet = new Pet("Tom");
  8. @Test
  9. public void testPetSpeak(){
  10. String expected = "WHAT AM I";
  11. assertEquals(pet.speak(), expected);
  12. }
  13. }