25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.0 KiB

  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="Feature Tests">
  13. <directory suffix="Test.php">./tests/Feature</directory>
  14. </testsuite>
  15. <testsuite name="Unit Tests">
  16. <directory suffix="Test.php">./tests/Unit</directory>
  17. </testsuite>
  18. </testsuites>
  19. <filter>
  20. <whitelist processUncoveredFilesFromWhitelist="true">
  21. <directory suffix=".php">./app</directory>
  22. </whitelist>
  23. </filter>
  24. <php>
  25. <env name="APP_ENV" value="testing"/>
  26. <env name="CACHE_DRIVER" value="array"/>
  27. <env name="SESSION_DRIVER" value="redis"/>
  28. <env name="QUEUE_DRIVER" value="sync"/>
  29. </php>
  30. </phpunit>