getInheritedMethods() public method

{@inheritDoc}
public getInheritedMethods ( )
 /**
  * @covers phpDocumentor\Descriptor\TraitDescriptor::getInheritedMethods
  */
 public function testGetInheritedMethods()
 {
     $this->assertInstanceOf('phpDocumentor\\Descriptor\\Collection', $this->fixture->getInheritedMethods());
     $collection = $this->fixture->getInheritedMethods();
     $this->assertEquals(0, $collection->count());
 }