TestParser::testInterface PHP Method

testInterface() public method

public testInterface ( )
    function testInterface()
    {
        $this->assertTrue(strpos($this->output, 'public interface PHPDoctor\\Tests\\Data\\anInterface'));
        $this->assertTrue(strpos($this->output, 'public final static str PHPDoctor\\Tests\\Data\\aConst = \'const\''));
        $this->assertTrue(strpos($this->output, 'public final static int PHPDoctor\\Tests\\Data\\anIntConst'));
        $this->assertTrue(strpos($this->output, 'private final static int PHPDoctor\\Tests\\Data\\aPrivateIntConst'));
        $this->assertTrue(strpos($this->output, 'public final static int PHPDoctor\\Tests\\Data\\multipleConsts1 = 1'));
        $this->assertTrue(strpos($this->output, 'public final static int PHPDoctor\\Tests\\Data\\multipleConsts2 = 2'));
        $this->assertTrue(strpos($this->output, 'public final static int PHPDoctor\\Tests\\Data\\multipleConsts3 = 3'));
    }