command = new ServerCommand(); } /** * Test that the option parser is shaped right. */ public function testGetOptionParser(): void { $parser = $this->command->getOptionParser(); $options = $parser->options(); $this->assertArrayHasKey('host', $options); $this->assertArrayHasKey('port', $options); $this->assertArrayHasKey('ini_path', $options); $this->assertArrayHasKey('document_root', $options); } }