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