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 19

Class

Twig_Tests_Node_SandboxedPrintTest

Code

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