eZ\Publish\Core\Persistence\Legacy\Tests\Content\Type\ContentUpdater\Action\RemoveFieldTest::getContentStorageHandlerMock PHP Method

getContentStorageHandlerMock() protected method

Returns a Content StorageHandler mock.
protected getContentStorageHandlerMock ( ) : PHPUnit_Framework_MockObject_MockObject | StorageHandler
return PHPUnit_Framework_MockObject_MockObject | eZ\Publish\Core\Persistence\Legacy\Content\StorageHandler
    protected function getContentStorageHandlerMock()
    {
        if (!isset($this->contentStorageHandlerMock)) {
            $this->contentStorageHandlerMock = $this->getMock('eZ\\Publish\\Core\\Persistence\\Legacy\\Content\\StorageHandler', array(), array(), '', false);
        }
        return $this->contentStorageHandlerMock;
    }