]>
git.immae.eu Git - github/wallabag/wallabag.git/blob - vendor/twig/twig/test/Twig/Tests/Node/TextTest.php
4 * This file is part of Twig.
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 class Twig_Tests_Node_TextTest
extends Twig_Test_NodeTestCase
15 * @covers Twig_Node_Text::__construct
17 public function testConstructor()
19 $node = new Twig_Node_Text('foo', 1);
21 $this->assertEquals('foo', $node->getAttribute('data'));
25 * @covers Twig_Node_Text::compile
26 * @dataProvider getTests
28 public function testCompile($node, $source, $environment = null)
30 parent
::testCompile($node, $source, $environment);
33 public function getTests()
36 $tests[] = array(new Twig_Node_Text('foo', 1), "// line 1\necho \"foo\";");