phpunit.xml.dist 909 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit colors="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" bootstrap="test/Bootstrap.php">
  3. <testsuites>
  4. <testsuite name="all">
  5. <directory suffix="Test.php">test/</directory>
  6. </testsuite>
  7. </testsuites>
  8. <filter>
  9. <whitelist>
  10. <directory suffix=".php">src/</directory>
  11. </whitelist>
  12. </filter>
  13. <logging>
  14. <log type="tap" target="build/report.tap"/>
  15. <log type="junit" target="build/report.junit.xml"/>
  16. <log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
  17. <log type="coverage-text" target="build/coverage.txt"/>
  18. <log type="coverage-clover" target="build/logs/clover.xml"/>
  19. </logging>
  20. </phpunit>