getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testFilterArgumentsAsSingleNamedArray(): void { $arguments = [['foo' => 'bar', 'hoge' => 'piyo']]; $expected = ['foo', 'bar', 'hoge', 'piyo']; $command = $this->getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $this->assertSame('OK', $this->getCommand()->parseResponse('OK')); } /** * @group connected */ public function testCreatesMultipleKeys(): void { $redis = $this->getClient(); $this->assertEquals('OK', $redis->mset('foo', 'bar', 'hoge', 'piyo')); $this->assertSame('bar', $redis->get('foo')); $this->assertSame('piyo', $redis->get('hoge')); } }