コード例 #1
0
ファイル: PhakeTest.php プロジェクト: kore/Phake
 /**
  * Tests setting a default answer for only the __call magic method
  */
 public function testDefaultAnswerForStaticStubsOfCall()
 {
     $mock = Phake::mock('PhakeTest_MagicClass');
     Phake::whenStaticCallMethodWith(Phake::anyParameters())->isCalledOn($mock)->thenReturn(42);
     $this->assertEquals(42, $mock::foo());
 }