cli-barcode PHP
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.
 
 
 

36 lines
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>