Jarves\Tests\Bundle\BasicTest::testResolvePath PHP Метод

testResolvePath() публичный Метод

public testResolvePath ( )
    public function testResolvePath()
    {
        $this->markTestSkipped('Local doof');
        $path = $this->getJarves()->resolvePath('@JarvesPublicationBundle/Test', 'Resources/views', true);
        $this->assertEquals('../../../vendor/jarves/publication-bundle/Jarves/Publication/Resources/views/Test', $path);
        $path = $this->getJarves()->resolvePath('@JarvesPublicationBundle', '', true);
        $this->assertEquals('../../../vendor/jarves/publication-bundle/Jarves/Publication', $path);
        $path = $this->getJarves()->resolvePath('@JarvesPublicationBundle/Resources/views/News/list/default.html.twig', '', true);
        $this->assertEquals('../../../vendor/jarves/publication-bundle/Jarves/Publication/Resources/views/News/list/default.html.twig', $path);
    }