summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGabriel Caruso <carusogabriel34@gmail.com>2017-11-06 05:31:49 -0200
committerGabriel Caruso <carusogabriel34@gmail.com>2017-11-06 05:31:49 -0200
commitd6e16e396d6e2c69f68e92581d5f6315195eaec3 (patch)
treeed25e3ece82bbc06e58d2c8a4cf854eb07788840 /tests
parent8b163e5299244cffb002433f16ccb56cd21e76cf (diff)
downloadsql-parser-d6e16e396d6e2c69f68e92581d5f6315195eaec3.zip
sql-parser-d6e16e396d6e2c69f68e92581d5f6315195eaec3.tar.gz
sql-parser-d6e16e396d6e2c69f68e92581d5f6315195eaec3.tar.bz2
Use PSR-1 for PHPUnit TestCase
Diffstat (limited to 'tests')
-rw-r--r--tests/TestCase.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/TestCase.php b/tests/TestCase.php
index 824beb4..1b97a9e 100644
--- a/tests/TestCase.php
+++ b/tests/TestCase.php
@@ -9,6 +9,7 @@ namespace PhpMyAdmin\SqlParser\Tests;
use PhpMyAdmin\SqlParser\Lexer;
use PhpMyAdmin\SqlParser\Parser;
use PhpMyAdmin\SqlParser\TokensList;
+use PHPUnit\Framework\TestCase as BaseTestCase;
$GLOBALS['lang'] = 'en';
@@ -19,7 +20,7 @@ $GLOBALS['lang'] = 'en';
*
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
-abstract class TestCase extends \PHPUnit_Framework_TestCase
+abstract class TestCase extends BaseTestCase
{
/**
* Gets the token list generated by lexing this query.