Neos\Flow\Tests\Unit\Mvc\Controller\CommandControllerTest::processRequestThrowsExceptionIfGivenRequestIsNoCliRequest PHP Method

processRequestThrowsExceptionIfGivenRequestIsNoCliRequest() public method

    public function processRequestThrowsExceptionIfGivenRequestIsNoCliRequest()
    {
        $mockRequest = $this->createMock(Mvc\RequestInterface::class);
        $mockResponse = $this->createMock(Mvc\ResponseInterface::class);
        $this->commandController->processRequest($mockRequest, $mockResponse);
    }