public function testReturnType()
 {
     $this->assertNull($this->subject->getReturnType('MethodName'));
     $this->subject->setReturnType('MethodName', 'Type');
     $this->assertEquals('Type', $this->subject->getReturnType('MethodName'));
 }
 public function testMethodWithResponse()
 {
     $this->assertEquals('string', $this->classMetadata->getReturnType('methodWithResponse'));
 }