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