phpunit.xml 870 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="bootstrap/autoload.php"
  5. colors="true"
  6. convertErrorsToExceptions="true"
  7. convertNoticesToExceptions="true"
  8. convertWarningsToExceptions="true"
  9. processIsolation="false"
  10. stopOnFailure="false">
  11. <testsuites>
  12. <testsuite name="Application Test Suite">
  13. <directory>./tests/</directory>
  14. </testsuite>
  15. </testsuites>
  16. <filter>
  17. <whitelist>
  18. <directory suffix=".php">app/</directory>
  19. </whitelist>
  20. </filter>
  21. <php>
  22. <env name="APP_ENV" value="testing"/>
  23. <env name="CACHE_DRIVER" value="array"/>
  24. <env name="SESSION_DRIVER" value="array"/>
  25. <env name="QUEUE_DRIVER" value="sync"/>
  26. </php>
  27. </phpunit>