bootstrap.php in Courier 8
Same filename and directory in other branches
File
tests/bootstrap.phpView source
<?php
/**
* @file
* Searches for the core bootstrap file.
*/
$dir = __DIR__;
// Match against previous dir for Windows.
$previous_dir = '';
while ($dir = dirname($dir)) {
// We've reached the root.
if ($dir === $previous_dir) {
break;
}
$previous_dir = $dir;
if (is_file($dir . '/core/tests/bootstrap.php')) {
require_once $dir . '/core/tests/bootstrap.php';
return;
}
}
throw new RuntimeException('Unable to load core bootstrap.php.');