eZ\Publish\Core\Persistence\Legacy\Tests\Content\FieldHandlerTest::getStorageHandlerMock PHP Method

getStorageHandlerMock() protected method

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