summaryrefslogtreecommitdiffstats
path: root/tests/Components/Array2dTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Components/Array2dTest.php')
-rw-r--r--tests/Components/Array2dTest.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/Components/Array2dTest.php b/tests/Components/Array2dTest.php
index 3413f8a..1c57a43 100644
--- a/tests/Components/Array2dTest.php
+++ b/tests/Components/Array2dTest.php
@@ -35,13 +35,20 @@ class Array2dTest extends TestCase
{
$parser = new Parser();
Array2d::parse($parser, $this->getTokensList('(1, 2 +'));
- // TODO: Assert errors.
+
+ $this->markTestIncomplete(
+ 'This test has not been implemented yet.'
+ );
}
public function testParseErr2()
{
$parser = new Parser();
Array2d::parse($parser, $this->getTokensList('(1, 2 TABLE'));
+
+ $this->markTestIncomplete(
+ 'This test has not been implemented yet.'
+ );
}
public function testParseErr3()