summaryrefslogtreecommitdiffstats
path: root/tests/Parser/DropStatementTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Parser/DropStatementTest.php')
-rw-r--r--tests/Parser/DropStatementTest.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/Parser/DropStatementTest.php b/tests/Parser/DropStatementTest.php
new file mode 100644
index 0000000..0464367
--- /dev/null
+++ b/tests/Parser/DropStatementTest.php
@@ -0,0 +1,26 @@
+<?php
+
+namespace PhpMyAdmin\SqlParser\Tests\Parser;
+
+use PhpMyAdmin\SqlParser\Tests\TestCase;
+
+class DropStatementTest extends TestCase
+{
+ /**
+ * @dataProvider dropProvider
+ *
+ * @param mixed $test
+ */
+ public function testDrop($test)
+ {
+ $this->runParserTest($test);
+ }
+
+ public function dropProvider()
+ {
+ return [
+ ['parser/parseDrop'],
+ ['parser/parseDrop2'],
+ ];
+ }
+}