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