phpunit.xml.dist 790 B

123456789101112131415161718192021222324
  1. <phpunit backupGlobals="false"
  2. backupStaticAttributes="false"
  3. bootstrap="./tests/bootstrap.php"
  4. colors="true"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. processIsolation="false"
  9. stopOnFailure="false">
  10. <testsuites>
  11. <testsuite name="PhpOffice Common Test Suite">
  12. <directory>./tests/Common</directory>
  13. </testsuite>
  14. </testsuites>
  15. <filter>
  16. <whitelist>
  17. <directory suffix=".php">./src</directory>
  18. </whitelist>
  19. </filter>
  20. <logging>
  21. <log type="coverage-html" target="./build/coverage" />
  22. <log type="coverage-clover" target="./build/logs/clover.xml" />
  23. </logging>
  24. </phpunit>