phpunit.xml.dist 902 B

1234567891011121314151617181920212223242526272829
  1. <phpunit backupGlobals="false"
  2. backupStaticAttributes="false"
  3. bootstrap="./vendor/autoload.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\Math Test Suite">
  12. <directory>./tests/Math</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/clover.xml" />
  23. </logging>
  24. <coverage>
  25. <include>
  26. <directory suffix=".php">src</directory>
  27. </include>
  28. </coverage>
  29. </phpunit>