phpunit.xml 610 B

1234567891011121314151617
  1. <?xml version="1.0"?>
  2. <phpunit colors="true" verbose="true">
  3. <testsuites>
  4. <testsuite name="Basic">
  5. <file>tests/CredisTest.php</file>
  6. <file>tests/CredisStandaloneTest.php</file>
  7. </testsuite>
  8. <testsuite name="Cluster">
  9. <file>tests/CredisClusterTest.php</file>
  10. <file>tests/CredisStandaloneClusterTest.php</file>
  11. </testsuite>
  12. <testsuite name="Sentinel">
  13. <file>tests/CredisSentinelTest.php</file>
  14. <file>tests/CredisStandaloneSentinelTest.php</file>
  15. </testsuite>
  16. </testsuites>
  17. </phpunit>