Пример #1
0
 /**
  * Test get message with error: Redis instance not found
  *
  * @expectedException \RuntimeException
  */
 public function testGetMessageRedisNotFound()
 {
     $adapter = new RedisAdapter();
     $adapter->setListKey('foo.bar');
     $adapter->getMessage();
 }