A fork of potaka/bbcode to handle future maintenance
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.

35 lines
954B

  1. <phpunit backupGlobals="true"
  2. backupStaticAttributes="false"
  3. bootstrap="bootstrap.php"
  4. cacheTokens="false"
  5. colors="true"
  6. convertErrorsToExceptions="true"
  7. convertNoticesToExceptions="true"
  8. convertWarningsToExceptions="true"
  9. forceCoversAnnotation="false"
  10. mapTestClassNameToCoveredClassName="false"
  11. processIsolation="false"
  12. strict="false"
  13. verbose="false"
  14. >
  15. <testsuites>
  16. <testsuite name="My Test Suite">
  17. <directory>./Test</directory>
  18. </testsuite>
  19. </testsuites>
  20. <logging>
  21. <log type="coverage-html" target="codeCoverage" charset="UTF-8" highlight="false" lowUpperBound="35" highLowerBound="70"/>
  22. <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
  23. <!-- <log type="testdox-html" target="tmp/testdox.html"/>-->
  24. </logging>
  25. <filter>
  26. <blacklist>
  27. <directory>vendor</directory>
  28. </blacklist>
  29. <whitelist>
  30. <directory>../../src</directory>
  31. </whitelist>
  32. </filter>
  33. </phpunit>