1234567891011121314151617181920
  1. import static org.junit.Assert.*;
  2. import org.junit.After;
  3. import org.junit.Before;
  4. import org.junit.Test;
  5. public class BabyDucksTest
  6. {
  7. public BabyDucksTest(){
  8. }
  9. @Test
  10. public void testSpeak(){
  11. BabyDucks babyDucks = new BabyDucks();
  12. String expected = "All your base are belong to us.";
  13. String actual = babyDucks.speak();
  14. assertEquals(expected, actual);
  15. }
  16. }