Add namespace to DBI tests

Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
This commit is contained in:
Maurício Meneghini Fauth 2017-09-19 10:16:29 -03:00
parent c48f579832
commit 2241016ad3
2 changed files with 4 additions and 14 deletions

View File

@ -4,22 +4,16 @@
*
* @package PhpMyAdmin-test
*/
/*
* Include to test.
*/
namespace PhpMyAdmin\Tests\Dbi;
use PhpMyAdmin\Dbi\DbiMysql;
require_once 'test/PMATestCase.php';
/**
* Tests for PhpMyAdmin\Dbi\DbiMysql class
*
* @package PhpMyAdmin-test
*/
class DbiMysqlTest extends PMATestCase
class DbiMysqlTest extends \PMATestCase
{
/**
* @access protected

View File

@ -4,21 +4,17 @@
*
* @package PhpMyAdmin-test
*/
namespace PhpMyAdmin\Tests\Dbi;
/*
* Include to test.
*/
use PhpMyAdmin\Dbi\DbiMysqli;
use PhpMyAdmin\Theme;
require_once 'test/PMATestCase.php';
/**
* Tests for PhpMyAdmin\Dbi\DbiMysqli class
*
* @package PhpMyAdmin-test
*/
class DbiMysqliTest extends PMATestCase
class DbiMysqliTest extends \PMATestCase
{
/**
* @access protected