phpunit.xml.dist 796 B

123456789101112131415161718192021222324252627
  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="tests/bootstrap.php"
  12. >
  13. <php>
  14. <!-- <server name="CLIENT_ID" value="YOUR_CLIENT_ID" /> -->
  15. <!-- <server name="API_KEY" value="YOUR_API_KEY" /> -->
  16. </php>
  17. <testsuites>
  18. <testsuite name="DigitalOcean Test Suite">
  19. <directory>./tests/</directory>
  20. </testsuite>
  21. </testsuites>
  22. <filter>
  23. <whitelist>
  24. <directory>./src/DigitalOcean/</directory>
  25. </whitelist>
  26. </filter>
  27. </phpunit>