Nelmio\Alice\FixtureBuilder\Denormalizer\Fixture\FixtureDenormalizerRegistryTest::testThrowsExceptionIfNotSuitableDenormalizer PHP Method

testThrowsExceptionIfNotSuitableDenormalizer() public method

    public function testThrowsExceptionIfNotSuitableDenormalizer()
    {
        $builtFixtures = new FixtureBag();
        $className = 'Nelmio\\Alice\\Entity\\User';
        $reference = 'user0';
        $specs = ['username' => '<name()>'];
        $flags = new FlagBag('');
        $flagParserProphecy = $this->prophesize(FlagParserInterface::class);
        $flagParserProphecy->parse(Argument::any())->shouldNotBeCalled();
        /** @var FlagParserInterface $flagParser */
        $flagParser = $flagParserProphecy->reveal();
        $denormalizer = new FixtureDenormalizerRegistry($flagParser, []);
        $denormalizer->denormalize($builtFixtures, $className, $reference, $specs, $flags);
    }