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