diff --git a/tests/index.php b/tests/index.php index c1a27f3..ad14dad 100644 --- a/tests/index.php +++ b/tests/index.php @@ -59,7 +59,8 @@ foreach(pdo_drivers() as $d) if(is_dir($src_dir)) { array_map('do_include', glob($src_path.$d.'/*.php')); - array_map('do_include', glob($test_path.$d.'/*.php')); + require_once("{$test_path}{$d}/{$d}.php"); + require_once("{$test_path}{$d}/{$d}-qb.php"); } } @@ -67,5 +68,6 @@ foreach(pdo_drivers() as $d) if(function_exists('fbird_connect')) { array_map('do_include', glob($src_path.'firebird/*.php')); - array_map('do_include', glob($test_path.'firebird/*.php')); + require_once("{$test_path}firebird/firebird.php"); + require_once("{$test_path}firebird/firebird-qb.php"); } \ No newline at end of file