phpunit.xml.dist 750 B

123456789101112131415161718192021222324
  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. convertErrorsToExceptions="true"
  8. convertNoticesToExceptions="true"
  9. convertWarningsToExceptions="true"
  10. processIsolation="false"
  11. stopOnFailure="false"
  12. verbose="true"
  13. >
  14. <testsuites>
  15. <testsuite name="Test Suite">
  16. <directory suffix="Test.php">./tests</directory>
  17. </testsuite>
  18. </testsuites>
  19. <coverage processUncoveredFiles="true">
  20. <include>
  21. <directory suffix=".php">./src</directory>
  22. </include>
  23. </coverage>
  24. </phpunit>