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