Neos\Flow\Tests\Unit\Property\PropertyMappingConfigurationTest::shouldMapReturnsTrueForAllowedProperties PHP 메소드

shouldMapReturnsTrueForAllowedProperties() 공개 메소드

    public function shouldMapReturnsTrueForAllowedProperties()
    {
        $this->propertyMappingConfiguration->allowProperties('someSourceProperty', 'someOtherProperty');
        $this->assertTrue($this->propertyMappingConfiguration->shouldMap('someSourceProperty'));
        $this->assertTrue($this->propertyMappingConfiguration->shouldMap('someOtherProperty'));
    }