public function Twig_Tests_Node_SandboxedPrintTest::getTests

Overrides Twig_Test_NodeTestCase::getTests

File

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

Class

Twig_Tests_Node_SandboxedPrintTest

Code

public function getTests() {
  $tests = array();
  $tests[] = array(
    new Twig_Node_SandboxedPrint(new Twig_Node_Expression_Constant('foo', 1), 1),
    <<<EOF
// line 1
echo \$this->env->getExtension('sandbox')->ensureToStringAllowed("foo");
EOF
,
  );
  return $tests;
}