client = new Client(); try { $this->client->connect(); } catch (ConnectionException $e) { $this->markTestSkipped('The ' . __CLASS__ .' requires the use of redis'); } } /** * @return PredisCache */ protected function _getCacheDriver() { return new PredisCache($this->client); } }