123456789101112131415161718
  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. @Test
  8. public void testSet_Get_Name(){
  9. Pet pet = new Pet();
  10. String name = "Rhea";
  11. String expected = "Rhea";
  12. pet.setName(name);
  13. String actual = pet.getName();
  14. assertEquals(expected, actual);
  15. }
  16. }