diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 2770a5f..02d2b14 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -7,11 +7,14 @@ $vfs_files = [ './vendor/autoload.php', ]; +print_r(scandir()); + foreach ($vfs_files as $vfs_file) { + echo $vfs_file; if (file_exists($vfs_file)) { - echo $vfs_file; + echo 'loaded'; require_once $vfs_file; } }