diff options
author | Maurício Meneghini Fauth <mauriciofauth@gmail.com> | 2019-01-16 18:36:52 -0200 |
---|---|---|
committer | Maurício Meneghini Fauth <mauriciofauth@gmail.com> | 2019-01-16 18:36:52 -0200 |
commit | 69ee1104925e7cdcc29269cd653ecb3ef6e71937 (patch) | |
tree | 2802a05deb66f19a7fb26e046f13639757371d62 /tests/Components/Array2dTest.php | |
parent | 17da8a34b81442524a8e01fead7b5968fa1cc39d (diff) | |
download | sql-parser-69ee1104925e7cdcc29269cd653ecb3ef6e71937.zip sql-parser-69ee1104925e7cdcc29269cd653ecb3ef6e71937.tar.gz sql-parser-69ee1104925e7cdcc29269cd653ecb3ef6e71937.tar.bz2 |
Fix risky tests
- Rename test providers
- Mark tests as incomplete
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'tests/Components/Array2dTest.php')
-rw-r--r-- | tests/Components/Array2dTest.php | 9 |
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() |