summaryrefslogtreecommitdiffstats
path: root/tests/Parser/ArrayFragmentTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Parser/ArrayFragmentTest.php')
-rw-r--r--tests/Parser/ArrayFragmentTest.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/Parser/ArrayFragmentTest.php b/tests/Parser/ArrayFragmentTest.php
deleted file mode 100644
index a31bf2a..0000000
--- a/tests/Parser/ArrayFragmentTest.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-
-namespace SqlParser\Tests\Parser;
-
-use SqlParser\Tests\TestCase;
-
-class ArrayFragmentTest extends TestCase
-{
-
- /**
- * @dataProvider testArrayProvider
- */
- public function testArray($test)
- {
- $this->runParserTest($test);
- }
-
- public function testArrayProvider()
- {
- return array(
- array('parseArrayErr1'),
- array('parseArrayErr2'),
- array('parseArrayErr3'),
- );
- }
-}