diff options
Diffstat (limited to 'tests/Parser/ReplaceStatementTest.php')
-rw-r--r-- | tests/Parser/ReplaceStatementTest.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/Parser/ReplaceStatementTest.php b/tests/Parser/ReplaceStatementTest.php new file mode 100644 index 0000000..8044a8f --- /dev/null +++ b/tests/Parser/ReplaceStatementTest.php @@ -0,0 +1,25 @@ +<?php + +namespace SqlParser\Tests\Parser; + +use SqlParser\Tests\TestCase; + +class ReplaceStatementTest extends TestCase +{ + + /** + * @dataProvider testReplaceProvider + */ + public function testReplace($test) + { + $this->runParserTest($test); + } + + public function testReplaceProvider() + { + return array( + array('parseReplace'), + array('parseReplace2'), + ); + } +} |