Neos\FluidAdaptor\Tests\Unit\Core\Widget\WidgetContextTest::nonAjaxWidgetConfigurationIsReturnedWhenContextIsNotSerialized PHP Method

nonAjaxWidgetConfigurationIsReturnedWhenContextIsNotSerialized() public method

    public function nonAjaxWidgetConfigurationIsReturnedWhenContextIsNotSerialized()
    {
        $this->widgetContext->setNonAjaxWidgetConfiguration(array('key' => 'value'));
        $this->widgetContext->setAjaxWidgetConfiguration(array('keyAjax' => 'valueAjax'));
        $this->assertEquals(array('key' => 'value'), $this->widgetContext->getWidgetConfiguration());
    }