diff options
Diffstat (limited to 'tests/parser/CreateStatementTest.php')
-rw-r--r-- | tests/parser/CreateStatementTest.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/parser/CreateStatementTest.php b/tests/parser/CreateStatementTest.php new file mode 100644 index 0000000..b23e4ab --- /dev/null +++ b/tests/parser/CreateStatementTest.php @@ -0,0 +1,30 @@ +<?php + +class CreateStatementTest extends TestCase +{ + + public function testCreateTable() + { + $this->runParserTest('parseCreateTable'); + } + + public function testCreateProcedure() + { + $this->runParserTest('parseCreateProcedure'); + } + + public function testCreateProcedure2() + { + $this->runParserTest('parseCreateProcedure2'); + } + + public function testCreateFunction() + { + $this->runParserTest('parseCreateFunction'); + } + + public function testCreateFunctionErr1() + { + $this->runParserTest('parseCreateFunctionErr1'); + } +} |