コード例 #1
0
ファイル: MethodTest.php プロジェクト: kormik/manager
 public function testRemoveReturnValue()
 {
     $this->method->setReturnValue(new ReturnValue('42', 'int', 'The description'));
     $this->method->removeReturnValue();
     $this->assertNull($this->method->getReturnValue());
 }