Neos\Flow\Tests\Unit\Mvc\DispatchComponentTest::handleDispatchesTheRequest PHP Method

handleDispatchesTheRequest() public method

    public function handleDispatchesTheRequest()
    {
        $this->mockHttpRequest->expects($this->any())->method('getArguments')->will($this->returnValue([]));
        $this->mockPropertyMapper->expects($this->any())->method('convert')->with('', 'array', $this->mockPropertyMappingConfiguration)->will($this->returnValue([]));
        $this->mockDispatcher->expects($this->once())->method('dispatch')->with($this->mockActionRequest, $this->mockHttpResponse);
        $this->dispatchComponent->handle($this->mockComponentContext);
    }