Neos\FluidAdaptor\Tests\Unit\View\AbstractTemplateViewTest::assignAddsValueToTemplateVariableContainer PHP 메소드

assignAddsValueToTemplateVariableContainer() 공개 메소드

    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');
    }