You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

phpunit.xml.dist 794B

1234567891011121314151617181920212223242526272829
  1. <phpunit bootstrap="vendor/autoload.php"
  2. cacheTokens="false"
  3. colors="true"
  4. convertErrorsToExceptions="true"
  5. convertNoticesToExceptions="true"
  6. convertWarningsToExceptions="true"
  7. stopOnError="false"
  8. stopOnFailure="false"
  9. stopOnIncomplete="false"
  10. stopOnSkipped="false">
  11. <testsuites>
  12. <testsuite name="Test Suite">
  13. <directory suffix=".php">tests/</directory>
  14. </testsuite>
  15. </testsuites>
  16. <filter>
  17. <whitelist>
  18. <directory suffix=".php">Net/</directory>
  19. </whitelist>
  20. </filter>
  21. <logging>
  22. <log type="coverage-clover" target="build/logs/clover.xml"/>
  23. <log type="coverage-html" target="build/coverage/"/>
  24. </logging>
  25. </phpunit>