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.

phpunit.xml 417B

12345678910111213141516171819202122
  1. <phpunit
  2. bootstrap="vendor/autoload.php"
  3. convertErrorsToExceptions="true"
  4. convertNoticesToExceptions="true"
  5. convertWarningsToExceptions="true"
  6. strict="true">
  7. <testsuite>
  8. <directory>./tests</directory>
  9. </testsuite>
  10. <filter>
  11. <whitelist>
  12. <directory suffix=".php">src</directory>
  13. </whitelist>
  14. </filter>
  15. <logging>
  16. <log type="coverage-clover" target="build/logs/clover.xml"/>
  17. </logging>
  18. </phpunit>