getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $this->assertSame(0, $this->getCommand()->parseResponse(0)); $this->assertSame(1, $this->getCommand()->parseResponse(1)); } /** * @group connected */ public function testSetStringValue(): void { $redis = $this->getClient(); $this->assertSame(1, $redis->setnx('foo', 'bar')); $this->assertSame(0, $redis->setnx('foo', 'barbar')); $this->assertEquals('bar', $redis->get('foo')); } }