TestParser::testInheritance PHP Method

testInheritance() public method

public testInheritance ( )
    function testInheritance()
    {
        $this->assertTrue(strpos($this->output, 'public class PHPDoctor\\Tests\\Data\\childClass extends PHPDoctor\\Tests\\Data\\aClass'));
        $this->assertTrue(strpos($this->output, 'public class PHPDoctor\\Tests\\FileLevel\\inheritTestChild extends PHPDoctor\\Tests\\FileLevel\\inheritTest'));
        $this->assertTrue(strpos($this->output, 'InheritDoc: Test inheriting of class doccomments'));
        $this->assertTrue(strpos($this->output, 'InheritDoc: Test inheriting of method doccomments'));
        $this->assertTrue(strpos($this->output, 'InheritDoc: Test inheriting of field doccomments'));
        $this->assertTrue(strpos($this->output, 'public class PHPDoctor\\Tests\\FileLevel\\inheritTestImplements implements PHPDoctor\\Tests\\FileLevel\\inheritInterfaceTest'));
        $this->assertTrue(strpos($this->output, 'InheritDoc: Test inheriting of interface doccomments'));
        $this->assertTrue(strpos($this->output, 'InheritDoc: Test inheriting of interface method doccomments'));
        $this->assertTrue(strpos($this->output, 'InheritDoc: Test inheriting of interface field doccomments'));
    }