diff options
Diffstat (limited to 'tests/Parser/DropStatementTest.php')
-rw-r--r-- | tests/Parser/DropStatementTest.php | 26 |
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..ee71e16 --- /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 array( + array('parser/parseDrop'), + array('parser/parseDrop2'), + ); + } +} |