/**
  * @test
  * @covers \TYPO3\FLOW3\Property\PropertyMappingConfiguration::shouldMap
  */
 public function shouldMapReturnsTrueIfConfigured()
 {
     $this->propertyMappingConfiguration->allowAllProperties();
     $this->assertTrue($this->propertyMappingConfiguration->shouldMap('someSourceProperty'));
     $this->assertTrue($this->propertyMappingConfiguration->shouldMap('someOtherSourceProperty'));
 }