phpunit.xml.dist 831 B

123456789101112131415161718192021222324252627282930
  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. syntaxCheck="false"
  11. bootstrap="vendor/autoload.php"
  12. >
  13. <testsuites>
  14. <testsuite name="React/Partial Test Suite">
  15. <directory>./tests/</directory>
  16. </testsuite>
  17. </testsuites>
  18. <filter>
  19. <whitelist>
  20. <directory>./src/</directory>
  21. </whitelist>
  22. </filter>
  23. <logging>
  24. <log type="coverage-text" target="php://stdout"/>
  25. <log type="coverage-clover" target="build/logs/clover.xml"/>
  26. </logging>
  27. </phpunit>