Neos\Fusion\Tests\Functional\View\FusionViewTest::typoScriptViewUsesGivenPathIfSet PHP 메소드

typoScriptViewUsesGivenPathIfSet() 공개 메소드

    public function typoScriptViewUsesGivenPathIfSet()
    {
        $view = $this->buildView('Foo\\Bar\\Controller\\TestController', 'index');
        $view->setTypoScriptPath('foo/bar');
        $this->assertEquals('Xfoobar', $view->render());
    }