Nelmio\Alice\FixtureBuilder\ExpressionLanguage\Parser\TokenParser\Chainable\FunctionTokenParserTest::testEachArgumentIsTrimedToNotFalsifyTheParsing PHP Method

testEachArgumentIsTrimedToNotFalsifyTheParsing() public method

    public function testEachArgumentIsTrimedToNotFalsifyTheParsing()
    {
        $token = new Token('<foo( arg1 , arg2 )>', new TokenType(TokenType::FUNCTION_TYPE));
        $decoratedParserProphecy = $this->prophesize(ParserInterface::class);
        $decoratedParserProphecy->parse('arg1')->willReturn('parsed_arg1');
        $decoratedParserProphecy->parse('arg2')->willReturn('parsed_arg2');
        /** @var ParserInterface $decoratedParser */
        $decoratedParser = $decoratedParserProphecy->reveal();
        $expected = new FunctionCallValue('foo', ['parsed_arg1', 'parsed_arg2']);
        $parser = new FunctionTokenParser($decoratedParser);
        $actual = $parser->parse($token);
        $this->assertEquals($expected, $actual);
        $decoratedParserProphecy->parse(Argument::any())->shouldHaveBeenCalledTimes(2);
    }