phpunit.xml.dist 911 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="bootstrap.php">
  3. <testsuites>
  4. <testsuite name="Authentication">
  5. <directory suffix=".php">Auth</directory>
  6. </testsuite>
  7. <testsuite name="Transports">
  8. <directory suffix=".php">Transport</directory>
  9. </testsuite>
  10. <testsuite name="General">
  11. <file>ChunkedEncoding.php</file>
  12. <file>Cookies.php</file>
  13. <file>IDNAEncoder.php</file>
  14. <file>IRI.php</file>
  15. <file>Requests.php</file>
  16. <file>Response/Headers.php</file>
  17. <file>SSL.php</file>
  18. </testsuite>
  19. </testsuites>
  20. <logging>
  21. <log type="coverage-html" target="coverage" title="PHPUnit"
  22. charset="UTF-8" yui="true" highlight="true"
  23. lowUpperBound="35" highLowerBound="90"/>
  24. </logging>
  25. <filter>
  26. <blacklist>
  27. <directory suffix=".php">.</directory>
  28. </blacklist>
  29. <whitelist>
  30. <directory suffix=".php">../library</directory>
  31. </whitelist>
  32. </filter>
  33. </phpunit>