Neos\Flow\Tests\Functional\Property\PropertyMapperTest::mappingOfPropertiesWithUnqualifiedInterfaceName PHP Метод

mappingOfPropertiesWithUnqualifiedInterfaceName() публичный Метод

    public function mappingOfPropertiesWithUnqualifiedInterfaceName()
    {
        $relatedEntity = new Fixtures\TestEntity();
        $source = ['relatedEntity' => $relatedEntity];
        $result = $this->propertyMapper->convert($source, Fixtures\TestEntity::class);
        $this->assertSame($relatedEntity, $result->getRelatedEntity());
    }