eZ\Publish\Core\Persistence\Legacy\Tests\Content\MapperTest::getValueConverterRegistryMock PHP Method

getValueConverterRegistryMock() protected method

Returns a FieldValue converter registry mock.
protected getValueConverterRegistryMock ( ) : ConverterRegistry
return eZ\Publish\Core\Persistence\Legacy\Content\FieldValue\ConverterRegistry
    protected function getValueConverterRegistryMock()
    {
        if (!isset($this->valueConverterRegistryMock)) {
            $this->valueConverterRegistryMock = $this->getMock('eZ\\Publish\\Core\\Persistence\\Legacy\\Content\\FieldValue\\ConverterRegistry', array(), array(array()));
        }
        return $this->valueConverterRegistryMock;
    }