Inheritance: implements Nelmio\Alice\FixtureBuilder\Denormalizer\Fixture\SpecificationBagDenormalizer\ConstructorDenormalizerInterface, use trait Nelmio\Alice\IsAServiceTrait
 /**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage Invalid constructor method "@foo::bar::baz".
  */
 public function testThrowsExceptionIfInvalidConstructor()
 {
     $constructor = ['@foo::bar::baz' => $arguments = ['<latitude()>', '1 (unique)' => '<longitude()>']];
     $fixture = new FakeFixture();
     $flagParser = new FakeFlagParser();
     $argumentsDenormalizer = new FakeArgumentsDenormalizer();
     $denormalizer = new ConstructorWithCallerDenormalizer(new SimpleConstructorDenormalizer($argumentsDenormalizer));
     $denormalizer->denormalize($fixture, $flagParser, $constructor);
 }