getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $raw = null; $expected = null; $command = $this->getCommand(); $this->assertSame($expected, $command->parseResponse($raw)); } }