<?php
/**
* OpenSQLManager
*
* Free Database manager for Open Source Databases
* @package OpenSQLManager
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/OpenSQLManager
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
* Unit test bootstrap - Using php simpletest
define('OSL_TEST_DIR', dirname(__FILE__).'/');
define('OSL_BASE_DIR', str_replace(basename(OSL_TEST_DIR).'/', '', OSL_TEST_DIR).'sys/');
// Include simpletest
// it has to be set in your php path, or put in the tests folder
require_once('simpletest/autorun.php');
// Settings Tests
require_once(OSL_BASE_DIR . 'common/settings.php');
require_once(OSL_TEST_DIR . 'settings.php');
// Include db autoloader
require_once(OSL_BASE_DIR . 'db/autoload.php');
// Include db tests
require_once(OSL_BASE_DIR . 'db/tests/index.php');