Goetas\Xsd\XsdToPhp\Tests\Php\PathGenerator\PHPPathGeneratorTest::testWriterLong PHP Method

testWriterLong() public method

public testWriterLong ( )
    public function testWriterLong()
    {
        $generator = new Psr4PathGenerator(array('myns\\' => $this->tmpdir));
        $path = $generator->getPath(new PHPClass('Bar', 'myns\\foo'));
        $this->assertEquals($path, $this->tmpdir . "/foo/Bar.php");
    }