phpunit.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. backupGlobals="false"
  4. backupStaticAttributes="false"
  5. bootstrap="vendor/autoload.php"
  6. colors="true"
  7. convertErrorsToExceptions="true"
  8. convertNoticesToExceptions="true"
  9. convertWarningsToExceptions="true"
  10. processIsolation="false"
  11. stopOnFailure="false"
  12. xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
  13. <coverage processUncoveredFiles="true">
  14. <include>
  15. <directory suffix=".php">./app</directory>
  16. </include>
  17. </coverage>
  18. <testsuites>
  19. <testsuite name="Feature">
  20. <directory suffix="Test.php">./tests/Feature</directory>
  21. </testsuite>
  22. <testsuite name="Unit">
  23. <directory suffix="Test.php">./tests/Unit</directory>
  24. </testsuite>
  25. </testsuites>
  26. <php>
  27. <env name="APP_ENV" value="testing"/>
  28. <env name="CACHE_DRIVER" value="array"/>
  29. <env name="SESSION_DRIVER" value="array"/>
  30. <env name="QUEUE_DRIVER" value="sync"/>
  31. <env name="MAIL_DRIVER" value="array"/>
  32. </php>
  33. </phpunit>