summaryrefslogtreecommitdiffstats
path: root/tests/parser/RestoreStatementTest.php
diff options
context:
space:
mode:
authorDan Ungureanu <udan1107@gmail.com>2015-06-30 01:05:38 +0300
committerDan Ungureanu <udan1107@gmail.com>2015-06-30 01:05:38 +0300
commita2354cf85acd032efa374d1f9f611f02fdbe75f6 (patch)
tree3094a3144239860cb72c2f0871660a3f7c862e53 /tests/parser/RestoreStatementTest.php
parent5f15789bd325c4fcd6642ecfeea18a5b639acc99 (diff)
downloadsql-parser-a2354cf85acd032efa374d1f9f611f02fdbe75f6.zip
sql-parser-a2354cf85acd032efa374d1f9f611f02fdbe75f6.tar.gz
sql-parser-a2354cf85acd032efa374d1f9f611f02fdbe75f6.tar.bz2
Added statement builder (converts statement trees into executable query strings).
Implemented support for UNIONs in parser. Code coverage is now over 99%. Fixed CHECKSUM statement (typos). Refactored code. Removed pieces of duplicated code. Improved documentation and fixed coding style. Improved PHPUnit's configuration (more test suites for fine-grained testing).
Diffstat (limited to 'tests/parser/RestoreStatementTest.php')
-rw-r--r--tests/parser/RestoreStatementTest.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/parser/RestoreStatementTest.php b/tests/parser/RestoreStatementTest.php
deleted file mode 100644
index 28db6fe..0000000
--- a/tests/parser/RestoreStatementTest.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-
-namespace SqlParser\Tests\Parser;
-
-use SqlParser\Tests\TestCase;
-
-class RestoreStatementTest extends TestCase
-{
-
- /**
- * @dataProvider testRestoreProvider
- */
- public function testRestore($test)
- {
- $this->runParserTest($test);
- }
-
- public function testRestoreProvider()
- {
- return array(
- array('parseRestore'),
- );
- }
-}