phpunit.xml.dist 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="./tests/bootstrap.php"
  3. colors="true"
  4. processIsolation="false"
  5. stopOnFailure="false"
  6. syntaxCheck="false"
  7. convertErrorsToExceptions="true"
  8. convertNoticesToExceptions="true"
  9. convertWarningsToExceptions="true"
  10. testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader">
  11. <testsuites>
  12. <testsuite>
  13. <directory>./tests/Guzzle/Tests</directory>
  14. </testsuite>
  15. </testsuites>
  16. <logging>
  17. <log type="junit" target="build/artifacts/logs/junit.xml" logIncompleteSkipped="false" />
  18. </logging>
  19. <filter>
  20. <whitelist>
  21. <directory suffix=".php">./src/Guzzle</directory>
  22. <exclude>
  23. <directory suffix="Interface.php">./src/Guzzle</directory>
  24. <file>./src/Guzzle/Common/Exception/GuzzleException.php</file>
  25. <file>./src/Guzzle/Http/Exception/HttpException.php</file>
  26. <file>./src/Guzzle/Http/Exception/ServerErrorResponseException.php</file>
  27. <file>./src/Guzzle/Http/Exception/ClientErrorResponseException.php</file>
  28. <file>./src/Guzzle/Http/Exception/TooManyRedirectsException.php</file>
  29. <file>./src/Guzzle/Http/Exception/CouldNotRewindStreamException.php</file>
  30. <file>./src/Guzzle/Common/Exception/BadMethodCallException.php</file>
  31. <file>./src/Guzzle/Common/Exception/InvalidArgumentException.php</file>
  32. <file>./src/Guzzle/Common/Exception/RuntimeException.php</file>
  33. <file>./src/Guzzle/Common/Exception/UnexpectedValueException.php</file>
  34. <file>./src/Guzzle/Service/Exception/ClientNotFoundException.php</file>
  35. <file>./src/Guzzle/Service/Exception/CommandException.php</file>
  36. <file>./src/Guzzle/Service/Exception/DescriptionBuilderException.php</file>
  37. <file>./src/Guzzle/Service/Exception/ServiceBuilderException.php</file>
  38. <file>./src/Guzzle/Service/Exception/ServiceNotFoundException.php</file>
  39. <file>./src/Guzzle/Service/Exception/ValidationException.php</file>
  40. <file>./src/Guzzle/Service/Exception/JsonException.php</file>
  41. </exclude>
  42. </whitelist>
  43. </filter>
  44. </phpunit>