/**
  * @covers phpDocumentor\Descriptor\ClassDescriptor::setMethods
  * @covers phpDocumentor\Descriptor\ClassDescriptor::getMethods
  */
 public function testSettingAndGettingMethods()
 {
     $this->assertInstanceOf('phpDocumentor\\Descriptor\\Collection', $this->fixture->getMethods());
     $mock = m::mock('phpDocumentor\\Descriptor\\Collection');
     $this->fixture->setMethods($mock);
     $this->assertSame($mock, $this->fixture->getMethods());
 }