setCommand() public méthode

Sets the command
public setCommand ( Command $command )
$command Command The command to set
 public function testExecute()
 {
     $command = new HelpCommand();
     $commandTester = new CommandTester($command);
     $command->setCommand(new ListCommand());
     $commandTester->execute(array());
     $this->assertRegExp('/list \\[--xml\\] \\[--raw\\] \\[namespace\\]/', $commandTester->getDisplay(), '->execute() returns a text help for the given command');
     $command->setCommand(new ListCommand());
     $commandTester->execute(array('--xml' => true));
     $this->assertRegExp('/<command/', $commandTester->getDisplay(), '->execute() returns an XML help text if --xml is passed');
     $application = new Application();
     $commandTester = new CommandTester($application->get('help'));
     $commandTester->execute(array('command_name' => 'list'));
     $this->assertRegExp('/list \\[--xml\\] \\[--raw\\] \\[namespace\\]/', $commandTester->getDisplay(), '->execute() returns a text help for the given command');
     $commandTester->execute(array('command_name' => 'list', '--xml' => true));
     $this->assertRegExp('/<command/', $commandTester->getDisplay(), '->execute() returns an XML help text if --xml is passed');
 }
 public function testExecuteForCommandWithXmlOption()
 {
     $command = new HelpCommand();
     $commandTester = new CommandTester($command);
     $command->setCommand(new ListCommand());
     $commandTester->execute(array('--format' => 'xml'));
     $this->assertContains('<command', $commandTester->getDisplay(), '->execute() returns an XML help text if --xml is passed');
 }
Exemple #3
0
 public function testExecuteForCommandWithXmlOption()
 {
     $command = new HelpCommand();
     $commandTester = new CommandTester($command);
     $command->setCommand(new ListCommand());
     $commandTester->execute(array('--xml' => true));
     $this->assertRegExp('/<command/', $commandTester->getDisplay(), '->execute() returns an XML help text if --xml is passed');
 }
 /**
  * @param InputInterface $input
  * @param OutputInterface $output
  * @return int
  * @throws \Symfony\Component\Console\Exception\ExceptionInterface
  */
 protected function outputHelp(InputInterface $input, OutputInterface $output)
 {
     $help = new HelpCommand();
     $help->setCommand($this);
     return $help->run($input, $output);
 }