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