1234567891011121314151617 |
-
-
- import org.junit.Assert;
-
- import org.junit.Test;
- public class DogTest
- {
- @Test
- public void dogSpeakTest(){
- Dog test = new Dog();
-
- String expected = "woof";
- String actual = test.speak();
- Assert.assertEquals(expected,actual);
- }
- }
|