diff options
Diffstat (limited to 'tests/Parser/ArrayFragmentTest.php')
-rw-r--r-- | tests/Parser/ArrayFragmentTest.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/Parser/ArrayFragmentTest.php b/tests/Parser/ArrayFragmentTest.php new file mode 100644 index 0000000..a31bf2a --- /dev/null +++ b/tests/Parser/ArrayFragmentTest.php @@ -0,0 +1,26 @@ +<?php + +namespace SqlParser\Tests\Parser; + +use SqlParser\Tests\TestCase; + +class ArrayFragmentTest extends TestCase +{ + + /** + * @dataProvider testArrayProvider + */ + public function testArray($test) + { + $this->runParserTest($test); + } + + public function testArrayProvider() + { + return array( + array('parseArrayErr1'), + array('parseArrayErr2'), + array('parseArrayErr3'), + ); + } +} |