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

36 行
785 B

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit
  3. bootstrap="vendor/autoload.php"
  4. colors="true"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. stopOnFailure="true"
  9. syntaxCheck="true"
  10. >
  11. <testsuites>
  12. <testsuite name="basic">
  13. <directory>test</directory>
  14. </testsuite>
  15. </testsuites>
  16. <filter>
  17. <whitelist>
  18. <directory suffix=".php">src</directory>
  19. </whitelist>
  20. </filter>
  21. <logging>
  22. <log type="coverage-html"
  23. target="build/coverage"
  24. charset="UTF-8"
  25. yui="true"
  26. highlight="true"
  27. lowUpperBound="40"
  28. highLowerBound="70"
  29. />
  30. </logging>
  31. </phpunit>