Neos\Flow\Tests\Unit\Mvc\DispatcherTest::dispatchInterceptsActionRequestsByDefault PHP Method

dispatchInterceptsActionRequestsByDefault() public method

    public function dispatchInterceptsActionRequestsByDefault()
    {
        $this->mockActionRequest->expects($this->any())->method('isDispatched')->will($this->returnValue(true));
        $this->mockFirewall->expects($this->once())->method('blockIllegalRequests')->with($this->mockActionRequest);
        $this->dispatcher->dispatch($this->mockActionRequest, $this->mockHttpResponse);
    }