You are here

PhpRedisFlushUnitTestCase.test in Redis 7.2

Same filename and directory in other branches
  1. 7.3 lib/Redis/Tests/Cache/PhpRedisFlushUnitTestCase.test

File

lib/Redis/Tests/Cache/PhpRedisFlushUnitTestCase.test
View source
<?php

class Redis_Tests_Cache_PhpRedisFlushUnitTestCase extends Redis_Tests_Cache_AbstractFlushUnitTestCase {
  public static function getInfo() {
    return array(
      'name' => 'PhpRedis cache flush',
      'description' => 'Tests Redis module cache flush modes feature.',
      'group' => 'Redis',
    );
  }
  protected function getClientInterface() {
    if (extension_loaded('redis') && class_exists('Redis')) {
      return 'PhpRedis';
    }
  }

}