phpunit.xml 943 B

123456789101112131415161718192021222324252627
  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="All">
  13. <directory suffix="Test.php">./tests/unit</directory>
  14. </testsuite>
  15. </testsuites>
  16. <logging>
  17. <log type="coverage-html" target="./tests/output/Coverage/"
  18. charset="UTF-8" yui="true" highlight="true" />
  19. <log type="junit" target="./tests/output/Results/Results.xml"
  20. logIncompleteSkipped="true" />
  21. </logging>
  22. <filter>
  23. <whitelist addUncoveredFilesFromWhitelist="true">
  24. <directory suffix=".php">src/</directory>
  25. </whitelist>
  26. </filter>
  27. </phpunit>