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