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

phpunit.xml.dist 615B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit colors="true"
  3. convertErrorsToExceptions="true"
  4. convertNoticesToExceptions="true"
  5. convertWarningsToExceptions="true"
  6. processIsolation="false"
  7. stopOnFailure="false"
  8. syntaxCheck="false"
  9. bootstrap="vendor/autoload.php"
  10. >
  11. <testsuites>
  12. <testsuite name="php-xdg-base-dir unit tests">
  13. <directory>./tests/</directory>
  14. </testsuite>
  15. </testsuites>
  16. <filter>
  17. <whitelist>
  18. <directory>./src/</directory>
  19. </whitelist>
  20. </filter>
  21. </phpunit>