phpunit.xml 1.0 KB

12345678910111213141516171819202122232425262728293031
  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. stderr="true"
  11. stopOnFailure="false">
  12. <testsuites>
  13. <testsuite name="actions">
  14. <directory suffix="Test.php">./tests/actions</directory>
  15. </testsuite>
  16. <testsuite name="Core">
  17. <directory suffix="Test.php">./tests/Core</directory>
  18. </testsuite>
  19. <testsuite name="Media">
  20. <directory suffix="Test.php">./tests/Media</directory>
  21. </testsuite>
  22. </testsuites>
  23. <php>
  24. <env name="APP_ENV" value="testing"/>
  25. <env name="CACHE_DRIVER" value="array"/>
  26. <env name="SESSION_DRIVER" value="array"/>
  27. <env name="QUEUE_DRIVER" value="sync"/>
  28. <env name="MAIL_DRIVER" value="array"/>
  29. </php>
  30. </phpunit>