phpunit.xml.dist 798 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="vendor/autoload.php"
  5. forceCoversAnnotation="true"
  6. colors="true"
  7. convertDeprecationsToExceptions="true"
  8. convertErrorsToExceptions="true"
  9. convertNoticesToExceptions="true"
  10. convertWarningsToExceptions="true"
  11. processIsolation="false"
  12. stopOnFailure="false"
  13. verbose="true"
  14. >
  15. <testsuites>
  16. <testsuite name="Test Suite">
  17. <directory suffix="Test.php">./tests</directory>
  18. </testsuite>
  19. </testsuites>
  20. <coverage processUncoveredFiles="true">
  21. <include>
  22. <directory suffix=".php">./src</directory>
  23. </include>
  24. </coverage>
  25. </phpunit>