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

3 年前
123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. colors="true"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. processIsolation="false"
  9. stopOnFailure="false"
  10. syntaxCheck="false"
  11. >
  12. <php>
  13. <ini name="intl.default_locale" value="en"/>
  14. <ini name="intl.error_level" value="0"/>
  15. <ini name="memory_limit" value="-1"/>
  16. </php>
  17. <testsuites>
  18. <testsuite name="Test Suite">
  19. <directory>./</directory>
  20. </testsuite>
  21. </testsuites>
  22. </phpunit>