phpunit.xml 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="./tests/bootstrap.php" colors="true" processIsolation="false" stopOnFailure="false"
  3. convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true"
  4. testSuiteLoaderFile="phpunit/src/Runner/StandardTestSuiteLoader.php">
  5. <testsuites>
  6. <testsuite name="All">
  7. <directory>tests</directory>
  8. </testsuite>
  9. <testsuite name="Unit">
  10. <directory suffix="Test.php">./tests/Unit</directory>
  11. </testsuite>
  12. </testsuites>
  13. <groups>
  14. <exclude>
  15. <group>integration</group>
  16. </exclude>
  17. </groups>
  18. <logging>
  19. <log type="coverage-html" target="cache/coverage" lowUpperBound="35" highLowerBound="70"/>
  20. <log type="coverage-clover" target="cache/coverage.clover"/>
  21. </logging>
  22. <filter>
  23. <whitelist processUncoveredFilesFromWhitelist="true">
  24. <directory suffix=".php">./src</directory>
  25. </whitelist>
  26. </filter>
  27. </phpunit>