summaryrefslogtreecommitdiffstats
path: root/tests/parser/ArrayFragmentTest.php
diff options
context:
space:
mode:
authorDan Ungureanu <udan1107@gmail.com>2015-05-26 01:02:55 +0300
committerDan Ungureanu <udan1107@gmail.com>2015-06-08 19:37:46 +0300
commit0a52978705d59c50f785f0f9cf537161046beb21 (patch)
tree00051de2f829f6b1f5c95c54da89be1f298b77a8 /tests/parser/ArrayFragmentTest.php
downloadsql-parser-0a52978705d59c50f785f0f9cf537161046beb21.zip
sql-parser-0a52978705d59c50f785f0f9cf537161046beb21.tar.gz
sql-parser-0a52978705d59c50f785f0f9cf537161046beb21.tar.bz2
Initial commit.
Diffstat (limited to 'tests/parser/ArrayFragmentTest.php')
-rw-r--r--tests/parser/ArrayFragmentTest.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/parser/ArrayFragmentTest.php b/tests/parser/ArrayFragmentTest.php
new file mode 100644
index 0000000..ad40385
--- /dev/null
+++ b/tests/parser/ArrayFragmentTest.php
@@ -0,0 +1,20 @@
+<?php
+
+class ArrayFragmentTest extends TestCase
+{
+
+ public function testArrayErr1()
+ {
+ $this->runParserTest('parseArrayErr1');
+ }
+
+ public function testArrayErr2()
+ {
+ $this->runParserTest('parseArrayErr2');
+ }
+
+ public function testArrayErr3()
+ {
+ $this->runParserTest('parseArrayErr3');
+ }
+}