function testHasParentMethods()
 {
     $docs = new ClassDocumentor('SimpleDocumentorSubjectClass');
     $this->assertFalse($docs->hasParentMethods());
     $docs = new ClassDocumentor(get_class($this));
     $this->assertTrue($docs->hasParentMethods());
 }