Neos\Fusion\Tests\Unit\TypoScriptObjects\ArrayImplementationTest::evaluateWithEmptyArrayRendersNull PHP Method

evaluateWithEmptyArrayRendersNull() public method

    public function evaluateWithEmptyArrayRendersNull()
    {
        $mockTsRuntime = $this->getMockBuilder(Runtime::class)->disableOriginalConstructor()->getMock();
        $path = 'array/test';
        $typoScriptObjectName = 'Neos.Fusion:Array';
        $renderer = new ArrayImplementation($mockTsRuntime, $path, $typoScriptObjectName);
        $result = $renderer->evaluate();
        $this->assertNull($result);
    }