getCaller() public method

public getCaller ( )
コード例 #1
0
ファイル: NoMethodCallTest.php プロジェクト: nelmio/alice
 /**
  * @expectedException \LogicException
  * @expectedExceptionMessage By its nature, "Nelmio\Alice\Definition\MethodCall\NoMethodCall::getCaller()" should not be called.
  */
 public function testCannotGetCaller()
 {
     $call = new NoMethodCall();
     $call->getCaller();
 }