You are here

public function Twig_Tests_Node_SandboxedPrintTest::getTests in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/twig/twig/test/Twig/Tests/Node/SandboxedPrintTest.php \Twig_Tests_Node_SandboxedPrintTest::getTests()

Overrides Twig_Test_NodeTestCase::getTests

File

vendor/twig/twig/test/Twig/Tests/Node/SandboxedPrintTest.php, line 21

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