getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $raw = "\x00\xC0\n\x06\x00\xF8r?\xC5\xFB\xFB_("; $expected = "\x00\xC0\n\x06\x00\xF8r?\xC5\xFB\xFB_("; $command = $this->getCommand(); $this->assertSame($expected, $command->parseResponse($raw)); } }