phpunit.xml 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="tests/autoload.php"
  5. colors="true"
  6. convertErrorsToExceptions="true"
  7. convertNoticesToExceptions="true"
  8. convertWarningsToExceptions="true"
  9. processIsolation="false"
  10. stopOnFailure="false"
  11. beStrictAboutTestsThatDoNotTestAnything="false"
  12. beStrictAboutOutputDuringTests="false"
  13. timeoutForLargeTests="60"
  14. timeoutForMediumTests="10"
  15. timeoutForSmallTests="1"
  16. forceCoversAnnotation="false"
  17. beStrictAboutCoversAnnotation="false"
  18. >
  19. <testsuites>
  20. <testsuite name="unishop">
  21. <directory>./tests/unishop/</directory>
  22. </testsuite>
  23. </testsuites>
  24. <filter>
  25. <whitelist>
  26. <directory suffix=".php">./addons/unishop/</directory>
  27. </whitelist>
  28. </filter>
  29. <logging>
  30. <log type="coverage-html" target="./tests/codeCoverage"></log>
  31. </logging>
  32. </phpunit>