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.

24 lines
842 B

3 years ago
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
  4. bootstrap="vendor/autoload.php"
  5. executionOrder="depends,defects"
  6. forceCoversAnnotation="true"
  7. beStrictAboutCoversAnnotation="true"
  8. beStrictAboutOutputDuringTests="true"
  9. beStrictAboutTodoAnnotatedTests="true"
  10. failOnRisky="true"
  11. failOnWarning="true"
  12. verbose="true">
  13. <testsuites>
  14. <testsuite name="default">
  15. <directory suffix="Test.php">tests</directory>
  16. </testsuite>
  17. </testsuites>
  18. <coverage processUncoveredFiles="true">
  19. <include>
  20. <directory suffix=".php">src</directory>
  21. </include>
  22. </coverage>
  23. </phpunit>