phpunit.xml.dist 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="tests/bootstrap.php"
  3. colors="true"
  4. beStrictAboutTestSize="true"
  5. checkForUnintentionallyCoveredCode="true"
  6. beStrictAboutTestsThatDoNotTestAnything="true">
  7. <testsuites>
  8. <testsuite name="Predis Test Suite">
  9. <directory>tests/Predis/</directory>
  10. </testsuite>
  11. </testsuites>
  12. <groups>
  13. <exclude>
  14. <group>ext-phpiredis</group>
  15. <group>ext-curl</group>
  16. <group>realm-webdis</group>
  17. <!-- <group>connected</group> -->
  18. <!-- <group>disconnected</group> -->
  19. <!-- <group>commands</group> -->
  20. <!-- <group>slow</group> -->
  21. </exclude>
  22. </groups>
  23. <filter>
  24. <whitelist>
  25. <directory suffix=".php">src/</directory>
  26. </whitelist>
  27. </filter>
  28. <php>
  29. <!-- Redis -->
  30. <const name="REDIS_SERVER_VERSION" value="2.8" />
  31. <const name="REDIS_SERVER_HOST" value="127.0.0.1" />
  32. <const name="REDIS_SERVER_PORT" value="6379" />
  33. <const name="REDIS_SERVER_DBNUM" value="15" />
  34. <!-- Webdis -->
  35. <const name="WEBDIS_SERVER_HOST" value="127.0.0.1" />
  36. <const name="WEBDIS_SERVER_PORT" value="7379" />
  37. </php>
  38. </phpunit>