phpunit.xml 702 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit colors="false"
  3. convertErrorsToExceptions="true"
  4. convertNoticesToExceptions="true"
  5. convertWarningsToExceptions="true"
  6. stopOnError="true">
  7. <filter>
  8. <whitelist>
  9. <directory>..</directory>
  10. <exclude>
  11. <file>../utils/jshrink.php</file>
  12. <file>../utils/minify_html.php</file>
  13. </exclude>
  14. </whitelist>
  15. </filter>
  16. <testsuites>
  17. <testsuite name="pQuery test suite">
  18. <directory suffix=".php">.</directory>
  19. <exclude>
  20. <file>config.php</file>
  21. </exclude>
  22. </testsuite>
  23. </testsuites>
  24. <logging>
  25. <log type="coverage-html" target="coverage" charset="UTF-8" highlight="true" />
  26. </logging>
  27. </phpunit>