phpunit.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="vendor/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="Unit">
  13. <directory suffix="Test.php">./tests/Unit</directory>
  14. </testsuite>
  15. <testsuite name="Current">
  16. <directory suffix="Test.php">./tests/Current</directory>
  17. </testsuite>
  18. <testsuite name="Feature">
  19. <directory suffix="Test.php">./tests/Feature</directory>
  20. </testsuite>
  21. </testsuites>
  22. <filter>
  23. <whitelist processUncoveredFilesFromWhitelist="true">
  24. <directory suffix=".php">./app</directory>
  25. </whitelist>
  26. </filter>
  27. <php>
  28. <server name="APP_ENV" value="testing"/>
  29. <server name="BCRYPT_ROUNDS" value="4"/>
  30. <server name="CACHE_DRIVER" value="array"/>
  31. <server name="MAIL_DRIVER" value="array"/>
  32. <server name="QUEUE_CONNECTION" value="sync"/>
  33. <server name="SESSION_DRIVER" value="array"/>
  34. </php>
  35. </phpunit>