/**
  * @expectedException \ErrorException
  */
 public function testLazyConnection()
 {
     $amqpLazyConnection = new AMQPLazyConnection('localhost', 123, 'lazy_user', 'lazy_password');
     $consumer = new Consumer($amqpLazyConnection, null);
     $consumer->getChannel();
 }