Nelmio\Alice\FixtureBuilder\Denormalizer\Fixture\SpecificationBagDenormalizer\Constructor\ConstructorWithCallerDenormalizerTest::testCanDenormalizeStaticFactoriesConstructor PHP Method

testCanDenormalizeStaticFactoriesConstructor() public method

    public function testCanDenormalizeStaticFactoriesConstructor()
    {
        $constructor = ['Nelmio\\Entity\\UserFactory::create' => $arguments = ['<latitude()>', '1 (unique)' => '<longitude()>']];
        $fixture = new FakeFixture();
        $flagParser = new FakeFlagParser();
        $argumentsDenormalizerProphecy = $this->prophesize(ArgumentsDenormalizerInterface::class);
        $argumentsDenormalizerProphecy->denormalize($fixture, $flagParser, $arguments)->willReturn($arguments);
        /** @var ArgumentsDenormalizerInterface $argumentsDenormalizer */
        $argumentsDenormalizer = $argumentsDenormalizerProphecy->reveal();
        $expected = new MethodCallWithReference(new StaticReference('Nelmio\\Entity\\UserFactory'), 'create', $arguments);
        $denormalizer = new ConstructorWithCallerDenormalizer(new SimpleConstructorDenormalizer($argumentsDenormalizer));
        $actual = $denormalizer->denormalize($fixture, $flagParser, $constructor);
        $this->assertEquals($expected, $actual);
    }