phpunit.php 779 B

12345678910111213141516171819202122
  1. <?php
  2. // --------------------------------------------------------------
  3. // Overrride the application path if testing Laravel.
  4. // --------------------------------------------------------------
  5. foreach ($_SERVER['argv'] as $key => $argument)
  6. {
  7. if ($argument == 'laravel' and $_SERVER['argv'][$key - 1] == '--group')
  8. {
  9. define('APP_PATH', realpath('tests/laravel').DIRECTORY_SEPARATOR);
  10. }
  11. }
  12. // --------------------------------------------------------------
  13. // Set the core Laravel path constants.
  14. // --------------------------------------------------------------
  15. require 'paths.php';
  16. // --------------------------------------------------------------
  17. // Bootstrap the Laravel core.
  18. // --------------------------------------------------------------
  19. require SYS_PATH.'core.php';