diff options
author | Dan Ungureanu <udan1107@gmail.com> | 2015-07-15 00:19:14 +0300 |
---|---|---|
committer | Dan Ungureanu <udan1107@gmail.com> | 2015-07-15 00:19:14 +0300 |
commit | d8c6b9cc361a610ef04df9d86b61aabbb68eacb3 (patch) | |
tree | d9e6ab71497b777fc58fc1715315e56ccd934684 /tests/Components/Array2DTest.php | |
parent | 380603a8bfebd612bbc70801d99eb727be3e36ce (diff) | |
download | sql-parser-d8c6b9cc361a610ef04df9d86b61aabbb68eacb3.zip sql-parser-d8c6b9cc361a610ef04df9d86b61aabbb68eacb3.tar.gz sql-parser-d8c6b9cc361a610ef04df9d86b61aabbb68eacb3.tar.bz2 |
Improved error messages.
Achieved 100% code coverage.
Some refactoring.
Diffstat (limited to 'tests/Components/Array2DTest.php')
-rw-r--r-- | tests/Components/Array2DTest.php | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/Components/Array2DTest.php b/tests/Components/Array2DTest.php deleted file mode 100644 index bb646df..0000000 --- a/tests/Components/Array2DTest.php +++ /dev/null @@ -1,27 +0,0 @@ -<?php - -namespace SqlParser\Tests\Components; - -use SqlParser\Parser; -use SqlParser\Components\Array2d; - -use SqlParser\Tests\TestCase; - -class Array2dTest extends TestCase -{ - - public function testParseErr1() - { - $parser = new Parser(); - Array2d::parse($parser, $this->getTokensList('(1, 2 +')); - // TODO: Assert errors. - } - - public function testParseErr2() - { - $parser = new Parser(); - Array2d::parse($parser, $this->getTokensList('(1, 2 TABLE')); - // TODO: Assert errors. - } - -} |