public function Twig_Tests_Node_SandboxedPrintTest::getTests

Overrides Twig_Tests_Node_TestCase::getTests

File

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

Class

Twig_Tests_Node_SandboxedPrintTest

Code

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