/**
  * @test
  * @covers \TYPO3\Flow\Property\PropertyMappingConfiguration::shouldSkip
  */
 public function shouldSkipReturnsTrueIfConfigured()
 {
     $this->propertyMappingConfiguration->skipProperties('someSourceProperty', 'someOtherSourceProperty');
     $this->assertTrue($this->propertyMappingConfiguration->shouldSkip('someSourceProperty'));
     $this->assertTrue($this->propertyMappingConfiguration->shouldSkip('someOtherSourceProperty'));
 }