You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
599 B

  1. <?xml version="1.0"?>
  2. <phpunit
  3. bootstrap="tests/bootstrap.php"
  4. beStrictAboutTestsThatDoNotTestAnything="true">
  5. <testsuites>
  6. <testsuite name="unit">
  7. <directory suffix="Test.php">tests/unit</directory>
  8. </testsuite>
  9. <testsuite name="integration">
  10. <directory suffix="Test.php">tests/integration</directory>
  11. </testsuite>
  12. </testsuites>
  13. <filter>
  14. <whitelist processUncoveredFilesFromWhitelist="true">
  15. <directory suffix=".php">src</directory>
  16. </whitelist>
  17. </filter>
  18. <logging>
  19. <log type="coverage-html" target="./coverage"/>
  20. </logging>
  21. </phpunit>