phpunit.xml.dist 909 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
  5. backupGlobals="false"
  6. backupStaticProperties="false"
  7. beStrictAboutTestsThatDoNotTestAnything="false"
  8. bootstrap="vendor/autoload.php"
  9. cacheDirectory=".phpunit.cache"
  10. colors="true"
  11. displayDetailsOnTestsThatTriggerNotices="true"
  12. displayDetailsOnTestsThatTriggerDeprecations="true"
  13. displayDetailsOnPhpunitDeprecations="true"
  14. displayDetailsOnTestsThatTriggerWarnings="true"
  15. processIsolation="false"
  16. stopOnFailure="false">
  17. <testsuites>
  18. <testsuite name="Unit Tests">
  19. <directory suffix=".php">./tests/Unit/</directory>
  20. </testsuite>
  21. </testsuites>
  22. <source>
  23. <include>
  24. <directory suffix=".php">src</directory>
  25. </include>
  26. </source>
  27. </phpunit>