bootstrap.php in Feeds 8.3
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.');