PhpRedisPathUnitTestCase.test 547 B

12345678910111213141516171819202122
  1. <?php
  2. if (!class_exists('Redis_Tests_Path_PathUnitTestCase')) {
  3. require_once(__DIR__ . '/PathUnitTestCase.php');
  4. }
  5. class Redis_Tests_Path_PhpRedisPathUnitTestCase extends Redis_Tests_Path_PathUnitTestCase
  6. {
  7. public static function getInfo()
  8. {
  9. return array(
  10. 'name' => 'PhpRedis path inc replacement',
  11. 'description' => 'Tests PhpRedis path inc replacement.',
  12. 'group' => 'Redis',
  13. );
  14. }
  15. protected function getClientInterface()
  16. {
  17. return 'PhpRedis';
  18. }
  19. }