Neos\Flow\Tests\Unit\Property\PropertyMappingConfigurationTest::shouldMapReturnsTrueIfConfigured PHP Метод

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

    public function shouldMapReturnsTrueIfConfigured()
    {
        $this->propertyMappingConfiguration->allowAllProperties();
        $this->assertTrue($this->propertyMappingConfiguration->shouldMap('someSourceProperty'));
        $this->assertTrue($this->propertyMappingConfiguration->shouldMap('someOtherSourceProperty'));
    }