phpunit.xml.dist 861 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit
  3. backupGlobals="true"
  4. backupStaticAttributes="false"
  5. bootstrap="vendor/autoload.php"
  6. colors="true"
  7. convertErrorsToExceptions="true"
  8. convertNoticesToExceptions="true"
  9. convertWarningsToExceptions="true"
  10. processIsolation="false"
  11. stopOnError="false"
  12. stopOnFailure="false"
  13. syntaxCheck="true"
  14. >
  15. <testsuites>
  16. <testsuite name="Unit Tests">
  17. <directory suffix="Test.php">./tests/unit</directory>
  18. </testsuite>
  19. <testsuite name="Libsodium Compatibility Tests">
  20. <directory suffix="Test.php">./tests/compat</directory>
  21. </testsuite>
  22. </testsuites>
  23. <filter>
  24. <whitelist processUncoveredFilesFromWhitelist="true">
  25. <directory suffix=".php">./src</directory>
  26. </whitelist>
  27. </filter>
  28. </phpunit>