phpunit.xml 814 B

1234567891011121314151617181920212223
  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. failOnWarning="true"
  11. verbose="true">
  12. <testsuites>
  13. <testsuite name="default">
  14. <directory suffix="Test.php">tests</directory>
  15. </testsuite>
  16. </testsuites>
  17. <coverage processUncoveredFiles="true">
  18. <include>
  19. <directory suffix=".php">src</directory>
  20. </include>
  21. </coverage>
  22. </phpunit>