phpunit.xml.dist 836 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <phpunit bootstrap="tests/common/bootstrap.php" colors="true">
  3. <testsuites>
  4. <testsuite name="phpDocumentor">
  5. <directory>./tests/unit/</directory>
  6. </testsuite>
  7. </testsuites>
  8. <filter>
  9. <whitelist>
  10. <directory suffix=".php">src</directory>
  11. </whitelist>
  12. </filter>
  13. <logging>
  14. <log type="coverage-html"
  15. title="phpDocumentor Reflection Common"
  16. target="build/coverage"
  17. charset="UTF-8"
  18. yui="true"
  19. highlight="false"
  20. lowUpperBound="35"
  21. highLowerBound="70" />
  22. <log type="coverage-clover" target="build/logs/clover.xml"/>
  23. <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false" />
  24. </logging>
  25. </phpunit>