io = $this->getMockBuilder('Cake\Console\ConsoleIo')->getMock(); $this->shell = new ServerShell($this->io); } /** * Test that the option parser is shaped right. * * @return void */ public function testGetOptionParser() { $parser = $this->shell->getOptionParser(); $options = $parser->options(); $this->assertArrayHasKey('host', $options); $this->assertArrayHasKey('port', $options); $this->assertArrayHasKey('document_root', $options); } }