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