Neos\FluidAdaptor\Tests\Unit\ViewHelpers\Uri\ActionViewHelperTest::renderCorrectlyPassesDefaultArgumentsToUriBuilder PHP Метод

renderCorrectlyPassesDefaultArgumentsToUriBuilder() публичный Метод

    public function renderCorrectlyPassesDefaultArgumentsToUriBuilder()
    {
        $this->uriBuilder->expects($this->once())->method('setSection')->with('');
        $this->uriBuilder->expects($this->once())->method('setCreateAbsoluteUri')->with(false);
        $this->uriBuilder->expects($this->once())->method('setArguments')->with(array());
        $this->uriBuilder->expects($this->once())->method('setAddQueryString')->with(false);
        $this->uriBuilder->expects($this->once())->method('setArgumentsToBeExcludedFromQueryString')->with(array());
        $this->uriBuilder->expects($this->once())->method('setFormat')->with('');
        $this->uriBuilder->expects($this->once())->method('uriFor')->with('theActionName', array(), null, null, null);
        $this->viewHelper->initialize();
        $this->viewHelper->render('theActionName');
    }