eZ\Publish\Core\Persistence\Legacy\Tests\Content\Type\ContentUpdaterTest::getConverterRegistryMock PHP Method

getConverterRegistryMock() protected method

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