diff --git a/test/core/oql/OqlInterpreterTest.php b/test/core/oql/OqlInterpreterTest.php new file mode 100644 index 000000000..d58ff22f8 --- /dev/null +++ b/test/core/oql/OqlInterpreterTest.php @@ -0,0 +1,46 @@ +Parse(); // Not expecting a given format, otherwise use ParseExpression/ParseObjectQuery/ParseValueSetQuery + + $this->debug($oTrash); + } + + public function ParseProvider() + { + return array( + array("SELECT Contact WHERE org_id->deliverymodel_id->name = 'toto'"), + array("SELECT Contact WHERE cis_list->name = 'toto'"), + ); + } +}