phpunit.xml 783 B

1234567891011121314151617181920212223242526
  1. <phpunit backupGlobals="true"
  2. backupStaticAttributes="false"
  3. colors="true"
  4. convertErrorsToExceptions="true"
  5. convertNoticesToExceptions="true"
  6. convertWarningsToExceptions="true"
  7. processIsolation="false"
  8. stopOnFailure="false"
  9. syntaxCheck="false"
  10. bootstrap="tests/bootstrap.php">
  11. <testsuites>
  12. <testsuite name="upyun test cases">
  13. <file>./tests/SignatureTest.php</file>
  14. <file>./tests/UpyunTest.php</file>
  15. </testsuite>
  16. </testsuites>
  17. <filter>
  18. <whitelist>
  19. <directory suffix=".php">./src/</directory>
  20. </whitelist>
  21. </filter>
  22. <logging>
  23. <log type="coverage-clover" target="coverage.clover"/>
  24. </logging>
  25. </phpunit>