phpunit.xml.dist 862 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. beStrictAboutTestsThatDoNotTestAnything="true"
  5. beStrictAboutOutputDuringTests="true"
  6. bootstrap="tests/bootstrap.php"
  7. colors="true"
  8. convertErrorsToExceptions="true"
  9. convertNoticesToExceptions="true"
  10. convertWarningsToExceptions="true"
  11. processIsolation="false"
  12. stopOnError="false"
  13. stopOnFailure="false"
  14. verbose="true"
  15. >
  16. <testsuites>
  17. <testsuite name="JOSE Test Suite">
  18. <directory suffix="Test.php">./tests</directory>
  19. </testsuite>
  20. </testsuites>
  21. <filter>
  22. <whitelist processUncoveredFilesFromWhitelist="true">
  23. <directory suffix=".php">./src</directory>
  24. </whitelist>
  25. </filter>
  26. </phpunit>