assertEquals($left, $node->getNode('left')); $this->assertEquals($right, $node->getNode('right')); } /** * @covers Twig_Node_Expression_Binary_Concat::compile * @covers Twig_Node_Expression_Binary_Concat::operator * @dataProvider getTests */ public function testCompile($node, $source, $environment = null) { parent::testCompile($node, $source, $environment); } public function getTests() { $left = new Twig_Node_Expression_Constant(1, 1); $right = new Twig_Node_Expression_Constant(2, 1); $node = new Twig_Node_Expression_Binary_Concat($left, $right, 1); return array( array($node, '(1 . 2)'), ); } }