eZ\Publish\Core\Persistence\Legacy\Tests\Content\FieldValueConverterRegistryTest::testRegister PHP Method

testRegister() public method

public testRegister ( )
    public function testRegister()
    {
        $converter = $this->getFieldValueConverterMock();
        $registry = new Registry(array('some-type' => $converter));
        $this->assertAttributeSame(array('some-type' => $converter), 'converterMap', $registry);
    }