<?php /** * Query * * Free Query Builder / Database Abstraction Layer * * @package Query * @author Timothy J. Warren * @copyright Copyright (c) 2012 - 2013 * @link https://github.com/aviat4ion/Query * @license http://philsturgeon.co.uk/code/dbad-license */ // -------------------------------------------------------------------------- /** * Unit test bootstrap - Using php simpletest */ define('QTEST_DIR', dirname(__FILE__)); define('QBASE_DIR', str_replace(basename(QTEST_DIR), '', QTEST_DIR)); define('QDS', DIRECTORY_SEPARATOR); // Include simpletest // it has to be in the tests folder require_once('simpletest/autorun.php'); // Require composer items, if they exist if (is_dir(QBASE_DIR.'/vendor/')) { require_once(QBASE_DIR.'/vendor/autoload.php'); } // Include db classes require_once(QBASE_DIR . 'autoload.php'); // Require base testing classes require_once(QTEST_DIR . '/core/core.php'); require_once(QTEST_DIR . '/core/db_test.php'); require_once(QTEST_DIR . '/core/db_qp_test.php'); require_once(QTEST_DIR . '/core/db_qb_test.php'); // Include db tests // Load db classes based on capability $src_path = QBASE_DIR.'drivers/'; $test_path = QTEST_DIR.'/databases/'; foreach(PDO::getAvailableDrivers() as $d) { // PDO firebird isn't stable enough to // bother, so skip it. if ($d === 'firebird') { continue; } $src_dir = "{$test_path}{$d}"; if (is_dir($src_dir)) { require_once("{$test_path}{$d}/{$d}.php"); require_once("{$test_path}{$d}/{$d}-qb.php"); } } // Load Firebird if there is support if (function_exists('fbird_connect') && ! ($var = getenv('CI'))) { require_once("{$test_path}/firebird/firebird.php"); require_once("{$test_path}/firebird/firebird-qb.php"); }