/**
  * @covers phpDocumentor\Descriptor\Tag\MethodDescriptor::setResponse
  * @covers phpDocumentor\Descriptor\Tag\MethodDescriptor::getResponse
  */
 public function testSetAndGetResponse()
 {
     $expected = array('a' => 'b');
     $this->assertEmpty($this->fixture->getResponse());
     $this->fixture->setResponse($expected);
     $result = $this->fixture->getResponse();
     $this->assertSame($expected, $result);
 }