Neos\FluidAdaptor\Tests\Unit\Core\Widget\AbstractWidgetViewHelperTest::initializeArgumentsAndRenderDoesNotStoreTheWidgetContextForStatelessWidgets PHP 메소드

initializeArgumentsAndRenderDoesNotStoreTheWidgetContextForStatelessWidgets() 공개 메소드

    public function initializeArgumentsAndRenderDoesNotStoreTheWidgetContextForStatelessWidgets()
    {
        $this->viewHelper->_set('ajaxWidget', true);
        $this->viewHelper->_set('storeConfigurationInSession', false);
        $this->ajaxWidgetContextHolder->expects($this->never())->method('store');
        $this->callViewHelper();
    }