summaryrefslogtreecommitdiffstats
path: root/tests/parser/InsertStatementTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/parser/InsertStatementTest.php')
-rw-r--r--tests/parser/InsertStatementTest.php18
1 files changed, 16 insertions, 2 deletions
diff --git a/tests/parser/InsertStatementTest.php b/tests/parser/InsertStatementTest.php
index bce6065..d63054c 100644
--- a/tests/parser/InsertStatementTest.php
+++ b/tests/parser/InsertStatementTest.php
@@ -1,10 +1,24 @@
<?php
+namespace SqlParser\Tests\Parser;
+
+use SqlParser\Tests\TestCase;
+
class InsertStatementTest extends TestCase
{
- public function testInsert()
+ /**
+ * @dataProvider testInsertProvider
+ */
+ public function testInsert($test)
+ {
+ $this->runParserTest($test);
+ }
+
+ public function testInsertProvider()
{
- $this->runParserTest('parseInsert');
+ return array(
+ array('parseInsert'),
+ );
}
}