getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testFilterArgumentsNoOneArray(): void { $arguments = ['NO', 'ONE']; $expected = ['NO', 'ONE']; $command = $this->getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testFilterArgumentsNoOneString(): void { $arguments = ['NO ONE']; $expected = ['NO', 'ONE']; $command = $this->getCommand(); $command->setArguments($arguments); $this->assertSame($expected, $command->getArguments()); } /** * @group disconnected */ public function testParseResponse(): void { $this->assertTrue($this->getCommand()->parseResponse(true)); } }