Neos\Flow\Tests\Unit\Property\PropertyMappingConfigurationTest::getTargetPropertyNameShouldRespectMapping PHP Method

getTargetPropertyNameShouldRespectMapping() public method

    public function getTargetPropertyNameShouldRespectMapping()
    {
        $this->propertyMappingConfiguration->setMapping('k1', 'k1a');
        $this->assertEquals('k1a', $this->propertyMappingConfiguration->getTargetPropertyName('k1'));
        $this->assertEquals('k2', $this->propertyMappingConfiguration->getTargetPropertyName('k2'));
    }