assertEquals('foo', $node->getAttribute('data')); } /** * @covers Twig_Node_Text::compile * @dataProvider getTests */ public function testCompile($node, $source, $environment = null) { parent::testCompile($node, $source, $environment); } public function getTests() { $tests = array(); $tests[] = array(new Twig_Node_Text('foo', 0), 'echo "foo";'); return $tests; } }