Neos\Flow\Tests\Unit\Mvc\Controller\CommandControllerTest::processRequestThrowsExceptionIfGivenRequestIsNoCliRequest PHP 메소드

processRequestThrowsExceptionIfGivenRequestIsNoCliRequest() 공개 메소드

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