コード例 #1
0
ファイル: ArgumentsTest.php プロジェクト: nxpthx/FLOW3
 /**
  * @test
  * @expectedException \LogicException
  */
 public function callingInvalidMethodThrowsException()
 {
     $arguments = new Arguments();
     $arguments->nonExistingMethod();
 }