FluidTYPO3\Flux\Tests\Unit\View\ExposedTemplateViewTest::canGetStoredVariableWithoutConfigurationSectionName PHP Method

canGetStoredVariableWithoutConfigurationSectionName() public method

    public function canGetStoredVariableWithoutConfigurationSectionName()
    {
        $templatePathAndFilename = $this->getAbsoluteFixtureTemplatePathAndFilename(self::FIXTURE_TEMPLATE_ABSOLUTELYMINIMAL);
        $view = $this->getPreparedViewWithTemplateFile($templatePathAndFilename);
        $result = $this->callInaccessibleMethod($view, 'getStoredVariable', 'FluidTYPO3\\Flux\\ViewHelpers\\FormViewHelper', 'storage');
        $this->assertEmpty($result);
    }