Neos\Neos\Tests\Unit\ViewHelpers\EditableViewHelperTest::renderUsesTheNodeArgumentIfSet PHP Method

renderUsesTheNodeArgumentIfSet() public method

    public function renderUsesTheNodeArgumentIfSet()
    {
        $this->templateVariables = array('someProperty' => 'somePropertyValue');
        $this->tagBuilder->expects($this->once())->method('render');
        $this->injectDependenciesIntoViewHelper($this->editableViewHelper);
        $this->editableViewHelper->render('someProperty', 'div', $this->mockNode);
    }