CatTest.java 287B

12345678910111213141516171819
  1. import org.junit.Assert;
  2. import org.junit.Test;
  3. public class CatTest
  4. {
  5. @Test
  6. public void catSpeakTest(){
  7. Cat test = new Cat();
  8. String expected = "meow";
  9. String actual = test.speak();
  10. Assert.assertEquals(expected,actual);
  11. }
  12. }