public function Twig_Tests_Node_TextTest::testConstructor in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/twig/twig/test/Twig/Tests/Node/TextTest.php \Twig_Tests_Node_TextTest::testConstructor()
File
- vendor/
twig/ twig/ test/ Twig/ Tests/ Node/ TextTest.php, line 14
Class
Code
public function testConstructor() {
$node = new Twig_Node_Text('foo', 1);
$this
->assertEquals('foo', $node
->getAttribute('data'));
}