getCommand(); $command->setArguments([]); $this->assertSame([], $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $this->assertSame('OK', $this->getCommand()->parseResponse('OK')); } /** * @group connected */ public function testReturnsStatusResponseAndReadsEventsFromTheConnection(): void { $connection = $this->getClient()->getConnection(); $command = $this->getCommand(); $this->assertEquals('OK', $connection->executeCommand($command)); // NOTE: Starting with 2.6 Redis does not return the "MONITOR" message after // +OK to the client that issued the MONITOR command. if ($this->isRedisServerVersion('<=', '2.4.0')) { $this->assertMatchesRegularExpression('/\d+.\d+(\s?\(db \d+\))? "MONITOR"/', $connection->read()); } } }