phpunit.xml 770 B

1234567891011121314151617181920212223242526272829
  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. <directory>.</directory>
  12. <directory>../test-old</directory>
  13. <file>../utils/jshrink.php</file>
  14. <file>../utils/minify_html.php</file>
  15. </exclude>
  16. </whitelist>
  17. </filter>
  18. <testsuites>
  19. <testsuite name="pQuery test suite">
  20. <directory suffix=".php">.</directory>
  21. <exclude>
  22. <file>config.php</file>
  23. </exclude>
  24. </testsuite>
  25. </testsuites>
  26. <logging>
  27. <log type="coverage-html" target="coverage" charset="UTF-8" highlight="true" />
  28. </logging>
  29. </phpunit>