Neos\Fusion\Tests\Functional\TypoScriptObjects\AbstractTypoScriptObjectTest::assertMultipleTypoScriptPaths PHP Метод

assertMultipleTypoScriptPaths() защищенный Метод

Renders TypoScripts in the following paths and expects given $expected as result each time: $basePath . 'TypoScript' $basePath . 'Eel' $basePath . 'PlainValue'
protected assertMultipleTypoScriptPaths ( string $expected, string $basePath )
$expected string
$basePath string
    protected function assertMultipleTypoScriptPaths($expected, $basePath)
    {
        $this->assertTyposcriptPath($expected, $basePath . 'Eel');
        $this->assertTyposcriptPath($expected, $basePath . 'PlainValue');
        $this->assertTyposcriptPath($expected, $basePath . 'TypoScript');
    }