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