public function Twig_Tests_Node_SandboxedPrintTest::getTests in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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
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;
}