phpunit.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * Laravel - A PHP Framework For Web Artisans
  4. *
  5. * @package Laravel
  6. * @version 2.2.0 (Beta 1)
  7. * @author Taylor Otwell <taylorotwell@gmail.com>
  8. * @link http://laravel.com
  9. */
  10. // --------------------------------------------------------------
  11. // Define the directory separator for the environment.
  12. // --------------------------------------------------------------
  13. define('DS', DIRECTORY_SEPARATOR);
  14. // --------------------------------------------------------------
  15. // Override the framework paths if testing Laravel.
  16. // --------------------------------------------------------------
  17. foreach ($_SERVER['argv'] as $key => $argument)
  18. {
  19. if ($argument == 'laravel' and $_SERVER['argv'][$key - 1] == '--group')
  20. {
  21. define('APP_PATH', realpath('tests/laravel/application').DS);
  22. define('BUNDLE_PATH', realpath('tests/laravel/bundles').DS);
  23. define('STORAGE_PATH', realpath('tests/laravel/storage').DS);
  24. }
  25. }
  26. // --------------------------------------------------------------
  27. // Set the core Laravel path constants.
  28. // --------------------------------------------------------------
  29. require 'paths.php';
  30. // --------------------------------------------------------------
  31. // Bootstrap the Laravel core.
  32. // --------------------------------------------------------------
  33. require SYS_PATH.'core.php';
  34. // --------------------------------------------------------------
  35. // Start the default bundle.
  36. // --------------------------------------------------------------
  37. Bundle::start(DEFAULT_BUNDLE);