phpunit.xml.dist 1021 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. colors="true"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. processIsolation="false"
  9. stopOnFailure="false"
  10. verbose="false"
  11. bootstrap="tests/bootstrap.php"
  12. >
  13. <logging>
  14. <log type="coverage-html"
  15. target="tests/phpunit_report/report"
  16. lowUpperBound="35" highLowerBound="70"/>
  17. </logging>
  18. <php>
  19. <ini name="display_errors" value="on"/>
  20. <env name="SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT" value="true"/>
  21. </php>
  22. <testsuites>
  23. <testsuite name="TemporaryFilesystem tests Suite">
  24. <directory>tests</directory>
  25. </testsuite>
  26. </testsuites>
  27. <filter>
  28. <whitelist processUncoveredFilesFromWhitelist="true">
  29. <directory suffix=".php">src/</directory>
  30. </whitelist>
  31. </filter>
  32. </phpunit>