12345678910111213141516171819 |
-
-
- import org.junit.Assert;
-
- import org.junit.Test;
-
-
- public class CatTest
- {
- @Test
- public void catSpeakTest(){
- Cat test = new Cat();
-
- String expected = "meow";
- String actual = test.speak();
- Assert.assertEquals(expected,actual);
- }
- }
|