diff options
author | Dan Ungureanu <udan1107@gmail.com> | 2015-05-26 01:02:55 +0300 |
---|---|---|
committer | Dan Ungureanu <udan1107@gmail.com> | 2015-06-08 19:37:46 +0300 |
commit | 0a52978705d59c50f785f0f9cf537161046beb21 (patch) | |
tree | 00051de2f829f6b1f5c95c54da89be1f298b77a8 /tests/parser/ArrayFragmentTest.php | |
download | sql-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.php | 20 |
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'); + } +} |