phpunit.xml.dist 996 B

123456789101112131415161718192021222324252627282930313233343536
  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="true"
  11. verbose="false"
  12. bootstrap="tests/bootstrap.php"
  13. >
  14. <logging>
  15. <log type="coverage-html" target="tests/phpunit_report/report" charset="UTF-8"
  16. yui="true" highlight="false"
  17. lowUpperBound="35" highLowerBound="70"/>
  18. </logging>
  19. <php>
  20. <ini name="display_errors" value="on"/>
  21. </php>
  22. <testsuites>
  23. <testsuite name="MediaVorus Tests Suite">
  24. <directory>tests</directory>
  25. </testsuite>
  26. </testsuites>
  27. <filter>
  28. <blacklist>
  29. <directory>vendor</directory>
  30. <directory>tests</directory>
  31. </blacklist>
  32. </filter>
  33. </phpunit>