Neos\FluidAdaptor\Tests\Unit\View\AbstractTemplateViewTest::assignAddsValueToTemplateVariableContainer PHP Method

assignAddsValueToTemplateVariableContainer() public method

    public function assignAddsValueToTemplateVariableContainer()
    {
        $this->templateVariableContainer->expects($this->at(0))->method('add')->with('foo', 'FooValue');
        $this->templateVariableContainer->expects($this->at(1))->method('add')->with('bar', 'BarValue');
        $this->view->assign('foo', 'FooValue')->assign('bar', 'BarValue');
    }