eZ\Publish\Core\REST\Server\Tests\Input\Parser\ContentTypeUpdateTest::getContentTypeServiceMock PHP Method

getContentTypeServiceMock() protected method

Get the content type service mock object.
protected getContentTypeServiceMock ( ) : eZ\Publish\API\Repository\ContentTypeService
return eZ\Publish\API\Repository\ContentTypeService
    protected function getContentTypeServiceMock()
    {
        $contentTypeServiceMock = $this->getMock('eZ\\Publish\\Core\\Repository\\ContentTypeService', array(), array(), '', false);
        $contentTypeServiceMock->expects($this->any())->method('newContentTypeUpdateStruct')->will($this->returnValue(new ContentTypeUpdateStruct()));
        return $contentTypeServiceMock;
    }