You are here

public function Twig_Tests_Node_SandboxedPrintTest::testConstructor in Zircon Profile 8.0

Same name and namespace in other branches
  1. 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

Twig_Tests_Node_SandboxedPrintTest

Code

public function testConstructor() {
  $node = new Twig_Node_SandboxedPrint($expr = new Twig_Node_Expression_Constant('foo', 1), 1);
  $this
    ->assertEquals($expr, $node
    ->getNode('expr'));
}