/**
  * @expectedException BadMethodCallException
  * @expectedExceptionMessage testname
  */
 public function testExceptionGetCommandParamTestname()
 {
     CommandRegistry::getCommand('testname');
 }
Пример #2
0
 /**
  * Run custom command if exists
  * 
  * @param array $command
  * 
  * @return boolean
  */
 protected function runCustomCommand($command)
 {
     if (!CommandRegistry::hasCommand($command['command'])) {
         throw new BadMethodCallException('Command "' . $command['command'] . '" not found');
     }
     $customCommand = CommandRegistry::getCommand($command['command']);
     array_unshift($command['params'], $this->image);
     call_user_func_array($customCommand, $command['params']);
     return true;
 }