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

testGetStorage() public method

public testGetStorage ( )
    public function testGetStorage()
    {
        $converter = $this->getFieldValueConverterMock();
        $registry = new Registry(array('some-type' => $converter));
        $res = $registry->getConverter('some-type');
        $this->assertSame($converter, $res);
    }