Neos\Flow\Tests\Unit\Mvc\Controller\AbstractControllerTest::redirectToUriThrowsStopActionException PHP Method

redirectToUriThrowsStopActionException() public method

    public function redirectToUriThrowsStopActionException()
    {
        $controller = $this->getAccessibleMock(AbstractController::class, ['processRequest']);
        $controller->_call('initializeController', $this->mockActionRequest, $this->mockHttpResponse);
        $controller->_call('redirectToUri', 'http://some.uri');
    }