public static void main(String args[]) {

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