phpunit.xml 993 B

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="./phpunit.php"
  5. colors="true"
  6. convertErrorsToExceptions="true"
  7. convertNoticesToExceptions="true"
  8. convertWarningsToExceptions="true"
  9. processIsolation="false"
  10. stopOnFailure="false"
  11. syntaxCheck="true"
  12. verbose="true"
  13. >
  14. <testsuites>
  15. <testsuite name="flysystem/tests">
  16. <directory suffix=".php">./tests/</directory>
  17. </testsuite>
  18. </testsuites>
  19. <filter>
  20. <whitelist>
  21. <directory suffix=".php">./src/</directory>
  22. </whitelist>
  23. </filter>
  24. <logging>
  25. <log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
  26. <log type="coverage-html" target="coverage" showUncoveredFiles="true"/>
  27. <log type="coverage-clover" target="clover/phpunit.xml" showUncoveredFiles="true"/>
  28. </logging>
  29. </phpunit>