phpunit.xml.dist 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="vendor/autoload.php"
  5. colors="true"
  6. convertErrorsToExceptions="true"
  7. convertNoticesToExceptions="true"
  8. convertWarningsToExceptions="true"
  9. forceCoversAnnotation="false"
  10. mapTestClassNameToCoveredClassName="false"
  11. printerClass="PHPUnit_TextUI_ResultPrinter"
  12. processIsolation="false"
  13. stopOnError="false"
  14. stopOnFailure="false"
  15. stopOnIncomplete="false"
  16. stopOnSkipped="false"
  17. strict="false"
  18. verbose="true">
  19. <testsuites>
  20. <testsuite>
  21. <directory suffix="TestCase.php">./src/test/php</directory>
  22. </testsuite>
  23. </testsuites>
  24. <filter>
  25. <whitelist>
  26. <directory>src/main/php</directory>
  27. </whitelist>
  28. </filter>
  29. <logging>
  30. <log type="coverage-html" target="docs/coverage" charset="UTF-8"
  31. yui="true" highlight="false"
  32. lowUpperBound="35" highLowerBound="70"/>
  33. <log type="junit" target="docs/phpunit/junit.xml" logIncompleteSkipped="false"/>
  34. <log type="testdox-html" target="docs/phpunit/testdox.html"/>
  35. </logging>
  36. <php>
  37. <ini name="memory_limit" value="-1"/>
  38. </php>
  39. </phpunit>