コード例 #1
0
ファイル: StaticAnswerTest.php プロジェクト: ngyuki/phake
 public function testAnswer()
 {
     $this->assertEquals(42, $this->answer->getAnswer());
 }
コード例 #2
0
 public function testAnswer()
 {
     $this->assertEquals(42, call_user_func($this->answer->getAnswerCallback('someObject', 'testMethod')));
 }
コード例 #3
0
ファイル: NoAnswer.php プロジェクト: svpernova09/Phake
 public function __construct()
 {
     parent::__construct(null);
 }