public function Twig_Tests_Node_Expression_Binary_OrTest::getTests in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/twig/twig/test/Twig/Tests/Node/Expression/Binary/OrTest.php \Twig_Tests_Node_Expression_Binary_OrTest::getTests()
Overrides Twig_Test_NodeTestCase::getTests
File
- vendor/
twig/ twig/ test/ Twig/ Tests/ Node/ Expression/ Binary/ OrTest.php, line 24
Class
Code
public function getTests() {
$left = new Twig_Node_Expression_Constant(1, 1);
$right = new Twig_Node_Expression_Constant(2, 1);
$node = new Twig_Node_Expression_Binary_Or($left, $right, 1);
return array(
array(
$node,
'(1 || 2)',
),
);
}