Test reorganization
This commit is contained in:
parent
80a878d16e
commit
232de2f92c
21
tests/databases/mysql-qb.php
Normal file
21
tests/databases/mysql-qb.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
* OpenSQLManager
|
||||
*
|
||||
* Free Database manager for Open Source Databases
|
||||
*
|
||||
* @author Timothy J. Warren
|
||||
* @copyright Copyright (c) 2012
|
||||
* @link https://github.com/aviat4ion/OpenSQLManager
|
||||
* @license http://philsturgeon.co.uk/code/dbad-license
|
||||
*/
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
|
||||
class MySQLQBTest extends UnitTestCase {
|
||||
|
||||
function __construct()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
@ -19,16 +19,8 @@
|
||||
*/
|
||||
class MySQLTest extends UnitTestCase {
|
||||
|
||||
|
||||
/**
|
||||
* __construct function.
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
}
|
||||
}
|
||||
|
21
tests/databases/odbc-qb.php
Normal file
21
tests/databases/odbc-qb.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
* OpenSQLManager
|
||||
*
|
||||
* Free Database manager for Open Source Databases
|
||||
*
|
||||
* @author Timothy J. Warren
|
||||
* @copyright Copyright (c) 2012
|
||||
* @link https://github.com/aviat4ion/OpenSQLManager
|
||||
* @license http://philsturgeon.co.uk/code/dbad-license
|
||||
*/
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
|
||||
class ODBCQBTest extends UnitTestCase {
|
||||
|
||||
function __construct()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
@ -18,15 +18,9 @@
|
||||
* @extends UnitTestCase
|
||||
*/
|
||||
class ODBCTest extends UnitTestCase {
|
||||
|
||||
/**
|
||||
* __construct function.
|
||||
*
|
||||
* @access public
|
||||
* @return void
|
||||
*/
|
||||
|
||||
function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
}
|
||||
}
|
21
tests/databases/pgsql-qb.php
Normal file
21
tests/databases/pgsql-qb.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
* OpenSQLManager
|
||||
*
|
||||
* Free Database manager for Open Source Databases
|
||||
*
|
||||
* @author Timothy J. Warren
|
||||
* @copyright Copyright (c) 2012
|
||||
* @link https://github.com/aviat4ion/OpenSQLManager
|
||||
* @license http://philsturgeon.co.uk/code/dbad-license
|
||||
*/
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
|
||||
class PgSQLQBTest extends UnitTestCase {
|
||||
|
||||
function __construct()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
@ -57,6 +57,7 @@ foreach(pdo_drivers() as $d)
|
||||
require_once("{$src_path}{$d}.php");
|
||||
require_once("{$src_path}{$d}_sql.php");
|
||||
require_once("{$test_path}{$d}.php");
|
||||
require_once("{$test_path}{$d}-qb.php");
|
||||
}
|
||||
}
|
||||
|
||||
@ -66,4 +67,5 @@ if(function_exists('ibase_connect'))
|
||||
require_once("{$src_path}firebird-ibase.php");
|
||||
require_once("{$src_path}firebird_sql.php");
|
||||
require_once("{$test_path}firebird.php");
|
||||
require_once("{$test_path}firebird-qb.php");
|
||||
}
|
Binary file not shown.
Reference in New Issue
Block a user