diff options
Diffstat (limited to 'tests/Parser/LimitKeywordTest.php')
-rw-r--r-- | tests/Parser/LimitKeywordTest.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/Parser/LimitKeywordTest.php b/tests/Parser/LimitKeywordTest.php new file mode 100644 index 0000000..2e7831d --- /dev/null +++ b/tests/Parser/LimitKeywordTest.php @@ -0,0 +1,25 @@ +<?php + +namespace SqlParser\Tests\Parser; + +use SqlParser\Tests\TestCase; + +class LimitKeywordTest extends TestCase +{ + + /** + * @dataProvider testCallProvider + */ + public function testCall($test) + { + $this->runParserTest($test); + } + + public function testCallProvider() + { + return array( + array('parseLimitErr1'), + array('parseLimitErr2'), + ); + } +} |