您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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>