eZ\Publish\Core\REST\Server\Tests\Input\Parser\BaseTest::getParsingDispatcherMock PHP Method

getParsingDispatcherMock() protected method

Get the parsing dispatcher.
protected getParsingDispatcherMock ( ) : ParsingDispatcher
return eZ\Publish\Core\REST\Common\Input\ParsingDispatcher
    protected function getParsingDispatcherMock()
    {
        if (!isset($this->parsingDispatcherMock)) {
            $this->parsingDispatcherMock = $this->getMock('\\eZ\\Publish\\Core\\REST\\Common\\Input\\ParsingDispatcher', array(), array(), '', false);
        }
        return $this->parsingDispatcherMock;
    }