1234567891011121314151617
  1. import static org.junit.Assert.*;
  2. import org.junit.After;
  3. import org.junit.Before;
  4. import org.junit.Test;
  5. public class CatTest
  6. {
  7. private Cat cat =new Cat("tom");
  8. @Test
  9. public void testCatSpeak(){
  10. String expected = "MEOW!";
  11. assertEquals(cat.speak(), expected);
  12. }
  13. }