Inheritance: implements Nelmio\Alice\FixtureBuilder\Denormalizer\Fixture\ChainableFixtureDenormalizerInterface, implements Nelmio\Alice\FixtureBuilder\Denormalizer\FlagParserAwareInterface, use trait Nelmio\Alice\IsAServiceTrait
 /**
  * @expectedException \Nelmio\Alice\Throwable\Exception\FixtureBuilder\Denormalizer\FlagParser\FlagParserNotFoundException
  * @expectedExceptionMessage Expected method "Nelmio\Alice\FixtureBuilder\Denormalizer\Fixture\Chainable\SimpleDenormalizer::denormalize" to be called only if it has a flag parser.
  */
 public function testCannotDenormalizeFixtureIfHasNoFlagParser()
 {
     /** @var SpecificationsDenormalizerInterface $specsDenormalizer */
     $specsDenormalizer = $this->prophesize(SpecificationsDenormalizerInterface::class)->reveal();
     $denormalizer = new SimpleDenormalizer($specsDenormalizer);
     $denormalizer->denormalize(new FixtureBag(), 'Nelmio\\Alice\\Entity\\User', 'user0', [], new FlagBag(''));
 }