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