2012-02-02 17:43:09 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* OpenSQLManager
|
|
|
|
*
|
|
|
|
* Free Database manager for Open Source Databases
|
|
|
|
*
|
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2012
|
|
|
|
* @link https://github.com/aviat4ion/OpenSQLManager
|
2012-03-28 12:20:18 -04:00
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
2012-02-02 17:43:09 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unit test bootstrap - Using php simpletest
|
|
|
|
*/
|
2012-04-13 13:21:06 -04:00
|
|
|
define('OSL_TEST_DIR', dirname(__FILE__).'/');
|
|
|
|
define('OSL_BASE_DIR', str_replace(basename(OSL_TEST_DIR).'/', '', OSL_TEST_DIR).'sys/');
|
2012-02-02 19:04:10 -05:00
|
|
|
|
2012-04-09 14:26:55 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2012-02-02 19:04:10 -05:00
|
|
|
// Include simpletest
|
|
|
|
// it has to be set in your php path, or put in the tests folder
|
|
|
|
require_once('simpletest/autorun.php');
|
2012-04-13 13:21:06 -04:00
|
|
|
require_once(OSL_BASE_DIR . 'db/autoload.php');
|
2012-02-02 19:04:10 -05:00
|
|
|
|
|
|
|
// Include core tests
|
2012-04-13 13:21:06 -04:00
|
|
|
array_map('do_include', glob(OSL_TEST_DIR . 'core/*.php'));
|
2012-04-04 10:52:45 -04:00
|
|
|
|
|
|
|
// Include required methods
|
2012-04-13 13:21:06 -04:00
|
|
|
array_map('do_include', glob(OSL_BASE_DIR . 'common/*.php'));
|
2012-02-02 19:04:10 -05:00
|
|
|
|
|
|
|
// Include db tests
|
2012-04-13 13:21:06 -04:00
|
|
|
require_once(OSL_BASE_DIR . 'db/tests/index.php');
|