summaryrefslogtreecommitdiffstats
path: root/tests/Parser
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Parser')
-rw-r--r--tests/Parser/CreateStatementTest.php6
-rw-r--r--tests/Parser/SelectStatementTest.php3
2 files changed, 7 insertions, 2 deletions
diff --git a/tests/Parser/CreateStatementTest.php b/tests/Parser/CreateStatementTest.php
index 5f0c8ac..3e328b1 100644
--- a/tests/Parser/CreateStatementTest.php
+++ b/tests/Parser/CreateStatementTest.php
@@ -19,12 +19,16 @@ class CreateStatementTest extends TestCase
public function createProvider()
{
return array(
+ array('parser/parseCreateDatabase'),
+ array('parser/parseCreateDatabaseErr'),
array('parser/parseCreateFunction'),
array('parser/parseCreateFunctionErr1'),
array('parser/parseCreateFunctionErr2'),
array('parser/parseCreateFunctionErr3'),
array('parser/parseCreateProcedure'),
array('parser/parseCreateProcedure2'),
+ array('parser/parseCreateSchema'),
+ array('parser/parseCreateSchemaErr'),
array('parser/parseCreateTable'),
array('parser/parseCreateTable2'),
array('parser/parseCreateTable3'),
@@ -47,7 +51,7 @@ class CreateStatementTest extends TestCase
array('parser/parseCreateView'),
array('parser/parseCreateView2'),
array('parser/parseCreateViewWithoutQuotes'),
- array('parser/parseCreateViewWithQuotes')
+ array('parser/parseCreateViewWithQuotes'),
);
}
}
diff --git a/tests/Parser/SelectStatementTest.php b/tests/Parser/SelectStatementTest.php
index b19b3cf..f4e1e90 100644
--- a/tests/Parser/SelectStatementTest.php
+++ b/tests/Parser/SelectStatementTest.php
@@ -84,7 +84,8 @@ class SelectStatementTest extends TestCase
array('parser/parseSelectIndexHintErr1'),
array('parser/parseSelectIndexHintErr2'),
array('parser/parseSelectIndexHintErr3'),
- array('parser/parseSelectIndexHintErr4')
+ array('parser/parseSelectIndexHintErr4'),
+ array('parser/parseSelectWithParenthesis')
);
}
}