2012-03-15 09:25:18 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Query
|
|
|
|
*
|
|
|
|
* Free Query Builder / Database Abstraction Layer
|
|
|
|
*
|
2012-04-20 13:17:39 -04:00
|
|
|
* @package Query
|
|
|
|
* @author Timothy J. Warren
|
2013-01-02 14:26:42 -05:00
|
|
|
* @copyright Copyright (c) 2012 - 2013
|
2012-03-15 09:25:18 -04:00
|
|
|
* @link https://github.com/aviat4ion/Query
|
2012-04-20 13:17:39 -04:00
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unit test bootstrap - Using php simpletest
|
|
|
|
*/
|
2012-04-30 16:06:06 -04:00
|
|
|
define('QTEST_DIR', dirname(__FILE__));
|
|
|
|
define('QBASE_DIR', str_replace(basename(QTEST_DIR), '', QTEST_DIR));
|
|
|
|
define('QDS', DIRECTORY_SEPARATOR);
|
2012-03-15 09:25:18 -04:00
|
|
|
|
|
|
|
// Include simpletest
|
2013-12-06 23:37:43 -05:00
|
|
|
// it has to be in the tests folder
|
2014-02-14 22:08:19 -05:00
|
|
|
//require_once('simpletest/autorun.php');
|
2012-03-15 09:25:18 -04:00
|
|
|
|
2013-12-06 23:37:43 -05:00
|
|
|
|
2012-03-15 09:25:18 -04:00
|
|
|
|