public function testMaxCallRetriesCanBeSet()
 {
     $this->cassandra->setMaxCallRetries(3);
     $this->cassandra->setDefaultColumnCount(50);
     try {
         $this->cassandra->call('foobar');
     } catch (Exception $e) {
         $this->assertEquals($e->getMessage(), 'Failed calling "foobar" the maximum of 3 times');
     }
 }