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

initializeControllerWillThrowAnExceptionIfTheGivenRequestIsNotSupported() public method

    public function initializeControllerWillThrowAnExceptionIfTheGivenRequestIsNotSupported()
    {
        $request = new Cli\Request();
        $response = new Cli\Response();
        $controller = $this->getAccessibleMock(AbstractController::class, ['processRequest']);
        $controller->_call('initializeController', $request, $response);
    }