Inheritance: implements Nelmio\Alice\Generator\Hydrator\PropertyHydratorInterface, use trait Nelmio\Alice\IsAServiceTrait
 /**
  * @dataProvider provideProperties
  */
 public function testTestObjectHydrationAgainstMutlipleValues(Property $property)
 {
     $instance = new Dummy();
     $object = new SimpleObject('dummy', $instance);
     $hydratedObject = $this->hydrator->hydrate($object, $property, new GenerationContext());
     $expected = $property->getValue();
     $actual = $this->propertyAccessor->getValue($hydratedObject->getInstance(), $property->getName());
     $this->assertSame($expected, $actual);
 }