Test reorganization

This commit is contained in:
Timothy Warren 2012-03-09 16:30:33 -05:00
parent 80a878d16e
commit 232de2f92c
7 changed files with 67 additions and 16 deletions

View 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()
{
}
}

View File

@ -19,16 +19,8 @@
*/
class MySQLTest extends UnitTestCase {
/**
* __construct function.
*
* @access public
* @return void
*/
function __construct()
{
parent::__construct();
}
}

View 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()
{
}
}

View File

@ -18,15 +18,9 @@
* @extends UnitTestCase
*/
class ODBCTest extends UnitTestCase {
/**
* __construct function.
*
* @access public
* @return void
*/
function __construct()
{
parent::__construct();
}
}

View 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()
{
}
}

View File

@ -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.