Neos\Fusion\Tests\Functional\TypoScriptObjects\ExceptionHandlerTest::exceptionalEelExpressionInOverrideIsHandledCorrectly PHP Method

exceptionalEelExpressionInOverrideIsHandledCorrectly() public method

    public function exceptionalEelExpressionInOverrideIsHandledCorrectly()
    {
        $view = $this->buildView();
        $view->setTypoScriptPath('exceptionHandler/eelExpressionInOverride');
        $output = $view->render();
        $this->assertStringStartsWith('StartException while rendering exceptionHandler', $output);
        $this->assertContains('myCollection', $output, 'The override path should be visible in the message TypoScript path');
    }