phpunit.xml 840 B

123456789101112131415161718192021222324252627
  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/10.0/phpunit.xsd"
  4. bootstrap="vendor/autoload.php"
  5. colors="true"
  6. cacheDirectory=".phpunit.cache"
  7. testdox="true">
  8. <testsuites>
  9. <testsuite name="Unit">
  10. <directory>tests/Unit</directory>
  11. </testsuite>
  12. <testsuite name="Integration">
  13. <directory>tests/Integration</directory>
  14. </testsuite>
  15. </testsuites>
  16. <source>
  17. <include>
  18. <directory>src</directory>
  19. </include>
  20. </source>
  21. <coverage>
  22. <report>
  23. <html outputDirectory="coverage-html"/>
  24. <text outputFile="coverage.txt"/>
  25. </report>
  26. </coverage>
  27. </phpunit>