eZ\Publish\Core\Persistence\Legacy\Tests\Content\Type\UpdateHandler\DoctrineDatabaseTest::getContentUpdaterMock PHP Method

getContentUpdaterMock() protected method

Returns a Content Updater mock.
protected getContentUpdaterMock ( ) : ContentUpdater
return eZ\Publish\Core\Persistence\Legacy\Content\Type\ContentUpdater
    protected function getContentUpdaterMock()
    {
        if (!isset($this->contentUpdaterMock)) {
            $this->contentUpdaterMock = $this->getMock('eZ\\Publish\\Core\\Persistence\\Legacy\\Content\\Type\\ContentUpdater', array(), array(), '', false);
        }
        return $this->contentUpdaterMock;
    }