public function Twig_Tests_Node_Expression_ConstantTest::getTests in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/twig/twig/test/Twig/Tests/Node/Expression/ConstantTest.php \Twig_Tests_Node_Expression_ConstantTest::getTests()
Overrides Twig_Test_NodeTestCase::getTests
File
- vendor/twig/ twig/ test/ Twig/ Tests/ Node/ Expression/ ConstantTest.php, line 21 
Class
Code
public function getTests() {
  $tests = array();
  $node = new Twig_Node_Expression_Constant('foo', 1);
  $tests[] = array(
    $node,
    '"foo"',
  );
  return $tests;
}