Inheritance: extends lithium\console\Command
Exemple #1
0
 public function testAdvancedHelp()
 {
     $command = new MockCommandHelp(array('request' => $this->request));
     $return = $command->__invoke('_help');
     $expected = "li3 mock-command-help --long=LONG -s [ARGS]";
     $expected = preg_quote($expected);
     $result = $command->response->output;
     $this->assertPattern("/{$expected}/", $result);
 }