phpunit.php 819 B

123456789101112131415161718192021
  1. <?php
  2. // --------------------------------------------------------------
  3. // Define the directory separator for the environment.
  4. // --------------------------------------------------------------
  5. define('DS', DIRECTORY_SEPARATOR);
  6. // --------------------------------------------------------------
  7. // Set the core Laravel path constants.
  8. // --------------------------------------------------------------
  9. require 'paths.php';
  10. // --------------------------------------------------------------
  11. // Bootstrap the Laravel core.
  12. // --------------------------------------------------------------
  13. require path('sys').'core.php';
  14. // --------------------------------------------------------------
  15. // Start the default bundle.
  16. // --------------------------------------------------------------
  17. Laravel\Bundle::start(DEFAULT_BUNDLE);