PredisLockingUnitTestCase.test 534 B

1234567891011121314151617181920212223
  1. <?php
  2. class Redis_Tests_Lock_PredisLockingUnitTestCase extends Redis_Tests_Lock_LockingUnitTestCase
  3. {
  4. public static function getInfo()
  5. {
  6. return array(
  7. 'name' => 'Predis Redis locking',
  8. 'description' => 'Ensure that Redis locking feature is working OK.',
  9. 'group' => 'Redis',
  10. );
  11. }
  12. protected function getLockBackendClass()
  13. {
  14. return 'Redis_Lock_Predis';
  15. }
  16. protected function getClientInterface()
  17. {
  18. return 'Predis';
  19. }
  20. }