diff --git a/tests/test.bootstrap.inc.php b/tests/test.bootstrap.inc.php index 21f6748d..4e3cf7f3 100644 --- a/tests/test.bootstrap.inc.php +++ b/tests/test.bootstrap.inc.php @@ -12,13 +12,14 @@ $base = __DIR__ . '/..'; +// Define application config lookup path +$paths = [ + get_include_path(), + $base . '/src', +]; + set_include_path( - $base . '/src:' . - $base . '/config:' . - $base . '/system:' . - $base . '/tests/statics:' . - $base . '/tests/statics/Core:' . - get_include_path() + implode(':', $paths) ); if (file_exists($base . '/vendor/autoload.php') == TRUE)