io = $this->getMock('Cake\Console\ConsoleIo'); $this->shell = new PluginShell($this->io); } /** * Test that the option parser is shaped right. * * @return void */ public function testGetOptionParser() { $this->shell->loadTasks(); $parser = $this->shell->getOptionParser(); $commands = $parser->subcommands(); $this->assertArrayHasKey('unload', $commands); $this->assertArrayHasKey('load', $commands); $this->assertArrayHasKey('assets', $commands); } }