/**
  * @test
  */
 public function setValueShouldCallPropertyMapperCorrectlyAndStoreResultInValue()
 {
     $this->setupPropertyMapperAndSetValue();
     $this->assertSame('convertedValue', $this->simpleValueArgument->getValue());
     $this->assertTrue($this->simpleValueArgument->isValid());
 }