expectException('Predis\ClientException'); $this->expectExceptionMessage($message); throw new ClientException($message); } /** * @group disconnected */ public function testExceptionClass(): void { $exception = new ClientException(); $this->assertInstanceOf('Predis\ClientException', $exception); $this->assertInstanceOf('Predis\PredisException', $exception); } }