Overrides Twig_Tests_Node_TestCase::getTests
public function getTests() {
$tests = array();
$expr = new Twig_Node_Expression_Constant('foo', 0);
$node = new Twig_Node_Expression_Test_Null($expr, 'null', new Twig_Node(array()), 0);
$tests[] = array(
$node,
'(null === "foo")',
);
return $tests;
}