phpunit.xml.dist 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="./unitTests/bootstrap.php"
  3. backupGlobals="true"
  4. colors="true"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. processIsolation="false"
  9. verbose="true"
  10. stopOnError="false"
  11. stopOnFailure="false"
  12. stopOnIncomplete="false"
  13. stopOnSkipped="false">
  14. <php>
  15. <ini name="memory_limit" value="2048M"/>
  16. </php>
  17. <testsuite name="Complex Unit Test Suite">
  18. <directory suffix="Test.php">./unitTests/classes</directory>
  19. </testsuite>
  20. <coverage includeUncoveredFiles="true" processUncoveredFiles="true">
  21. <include>
  22. <directory suffix=".php">classes/src</directory>
  23. </include>
  24. </coverage>
  25. <logging>
  26. <log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
  27. <log type="coverage-clover" target="coverage/phpunit/clover.xml" showUncoveredFiles="true"/>
  28. <log type="coverage-html" target="coverage/phpunit/html" lowUpperBound="35" highLowerBound="70"/>
  29. </logging>
  30. </phpunit>