コード例 #1
0
  public static void main(String args[]) {

    Bird bird = new Bird();
    bird.walk();
    bird.fly();
    bird.sing();
  }
コード例 #2
0
 @Test
 public void testBirdSings() {
   Bird bird = new Bird();
   bird.sing();
   assertEquals("I am singing\n", stdout.toString());
 }