Exemple #1
0
 public function testCatCanSayMouse()
 {
     @($cat = new Cat());
     $word = 'mouse';
     $this->expectOutputString($word);
     $cat->speak($word);
 }