public function Twig_Tests_Node_SandboxedPrintTest::testConstructor

@covers Twig_Node_SandboxedPrint::__construct

File

drupal/core/vendor/twig/twig/test/Twig/Tests/Node/SandboxedPrintTest.php, line 17

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'));
}