コード例 #1
0
ファイル: CatsTest.php プロジェクト: awd-git/Petshop
 public function testCatCanSayMouse()
 {
     @($cat = new Cat());
     $word = 'mouse';
     $this->expectOutputString($word);
     $cat->speak($word);
 }