You are here

PhpRedisPathUnitTestCase.test in Redis 7.3

File

lib/Redis/Tests/Path/PhpRedisPathUnitTestCase.test
View source
<?php

if (!class_exists('Redis_Tests_Path_PathUnitTestCase')) {
  require_once __DIR__ . '/PathUnitTestCase.php';
}
class Redis_Tests_Path_PhpRedisPathUnitTestCase extends Redis_Tests_Path_PathUnitTestCase {
  public static function getInfo() {
    return array(
      'name' => 'PhpRedis path inc replacement',
      'description' => 'Tests PhpRedis path inc replacement.',
      'group' => 'Redis',
    );
  }
  protected function getClientInterface() {
    return 'PhpRedis';
  }

}