phpunit.xml.dist 1.2 KB

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