PhpRedisFlushUnitTestCase.test 554 B

12345678910111213141516171819202122
  1. <?php
  2. if (!class_exists('Redis_Tests_Cache_FlushUnitTestCase')) {
  3. require_once(__DIR__ . '/FlushUnitTestCase.php');
  4. }
  5. class Redis_Tests_Cache_PhpRedisFlushUnitTestCase extends Redis_Tests_Cache_FlushUnitTestCase
  6. {
  7. public static function getInfo()
  8. {
  9. return array(
  10. 'name' => 'PhpRedis cache flush',
  11. 'description' => 'Tests Redis module cache flush modes feature.',
  12. 'group' => 'Redis',
  13. );
  14. }
  15. protected function getClientInterface()
  16. {
  17. return 'PhpRedis';
  18. }
  19. }