Nelmio\Alice\FixtureBuilder\Denormalizer\Fixture\Chainable\SimpleDenormalizerTest::testCannotDenormalizeFixtureIfHasNoFlagParser PHP Method

testCannotDenormalizeFixtureIfHasNoFlagParser() public method

    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(''));
    }