/** * @covers phpDocumentor\Descriptor\TraitDescriptor::setMethods * @covers phpDocumentor\Descriptor\TraitDescriptor::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()); }