phpunit.full.xml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="tests/bootstrap.php" colors="true"
  3. convertErrorsToExceptions="true" convertNoticesToExceptions="true"
  4. convertWarningsToExceptions="true" processIsolation="false"
  5. stopOnFailure="false">
  6. <php>
  7. <const name="PHPUNIT_DEBUG" value="false" />
  8. <ini name="display_errors" value="On" />
  9. <ini name="error_reporting" value="32767" />
  10. </php>
  11. <testsuites>
  12. <testsuite name="WycheProof tests">
  13. <directory suffix="Test.php">./tests/wycheproof</directory>
  14. </testsuite>
  15. <testsuite name="Unit tests">
  16. <directory suffix="Test.php">./tests/unit</directory>
  17. </testsuite>
  18. </testsuites>
  19. <logging>
  20. <log type="coverage-html" target="./tests/output/Coverage/"
  21. charset="UTF-8" yui="true" highlight="true" />
  22. <log type="junit" target="./tests/output/Results/Results.xml"
  23. logIncompleteSkipped="true" />
  24. </logging>
  25. <filter>
  26. <whitelist addUncoveredFilesFromWhitelist="true">
  27. <directory suffix=".php">src/</directory>
  28. </whitelist>
  29. </filter>
  30. </phpunit>