phpunit.xml 726 B

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