phpunit.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit
  3. convertErrorsToExceptions="true"
  4. convertNoticesToExceptions="true"
  5. convertWarningsToExceptions="true"
  6. colors="false"
  7. processIsolation="false"
  8. stopOnError="false"
  9. stopOnFailure="false"
  10. stopOnIncomplete="false"
  11. stopOnSkipped="false"
  12. syntaxCheck="true"
  13. backupGlobals="false"
  14. backupStaticAttributes="false"
  15. forceCoversAnnotation="false"
  16. mapTestClassNameToCoveredClassName="false"
  17. bootstrap="bootstrap.core.php">
  18. <testsuites>
  19. <testsuite name="Pimf">
  20. <directory suffix="Test.php">./tests</directory>
  21. </testsuite>
  22. </testsuites>
  23. <filter>
  24. <whitelist addUncoveredFilesFromWhitelist="true">
  25. <directory suffix=".php">./core</directory>
  26. <exclude>
  27. <file>bootstrap.core.php</file>
  28. <directory suffix=".php">./core/_error</directory>
  29. </exclude>
  30. </whitelist>
  31. </filter>
  32. <logging>
  33. <log type="coverage-html"
  34. target="./coverage/"
  35. charset="UTF-8"
  36. yui="true"
  37. highlight="true"
  38. lowUpperBound="35"
  39. highLowerBound="70"
  40. />
  41. </logging>
  42. </phpunit>