Neos\Fusion\Tests\Functional\TypoScriptObjects\RendererTest::assertRenderingWorks PHP Method

assertRenderingWorks() public method

public assertRenderingWorks ( $path, $expectation )
    public function assertRenderingWorks($path, $expectation)
    {
        $view = $this->buildView();
        $view->assign('cond', true);
        $view->setTypoScriptPath($path);
        $this->assertEquals($expectation, $view->render());
    }