public function Twig_Tests_Node_AutoEscapeTest::getTests in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/twig/twig/test/Twig/Tests/Node/AutoEscapeTest.php \Twig_Tests_Node_AutoEscapeTest::getTests()
Overrides Twig_Test_NodeTestCase::getTests
File
- vendor/
twig/ twig/ test/ Twig/ Tests/ Node/ AutoEscapeTest.php, line 23
Class
Code
public function getTests() {
$body = new Twig_Node(array(
new Twig_Node_Text('foo', 1),
));
$node = new Twig_Node_AutoEscape(true, $body, 1);
return array(
array(
$node,
"// line 1\necho \"foo\";",
),
);
}