Neos\FluidAdaptor\Tests\Unit\ViewHelpers\Link\ActionViewHelperTest::renderCorrectlyPassesDefaultArgumentsToUriBuilder PHP Method

renderCorrectlyPassesDefaultArgumentsToUriBuilder() public method

    public function renderCorrectlyPassesDefaultArgumentsToUriBuilder()
    {
        $this->uriBuilder->expects($this->once())->method('setSection')->with('');
        $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');
    }