public function testExecuteForCommandAlias()
 {
     $command = new HelpCommand();
     $command->setApplication(new Application());
     $commandTester = new CommandTester($command);
     $commandTester->execute(array('command_name' => 'li'));
     $this->assertRegExp('/list \\[--xml\\] \\[--raw\\] \\[--format="\\.\\.\\."\\] \\[namespace\\]/', $commandTester->getDisplay(), '->execute() returns a text help for the given command alias');
 }
 public function testExecuteForCommandAlias()
 {
     $command = new HelpCommand();
     $command->setApplication(new Application());
     $commandTester = new CommandTester($command);
     $commandTester->execute(array('command_name' => 'li'), array('decorated' => false));
     $this->assertContains('list [options] [--] [<namespace>]', $commandTester->getDisplay(), '->execute() returns a text help for the given command alias');
     $this->assertContains('format=FORMAT', $commandTester->getDisplay(), '->execute() returns a text help for the given command alias');
     $this->assertContains('raw', $commandTester->getDisplay(), '->execute() returns a text help for the given command alias');
 }
 public function testExecute()
 {
     $command = new HelpCommand();
     $application = new Application();
     $command->setApplication($application);
     $commandTester = new CommandTester($command);
     $commandTester->execute(array('command_name' => 'li'));
     $this->assertRegExp('/list \\[--xml\\] \\[--raw\\] \\[namespace\\]/', $commandTester->getDisplay(), '->execute() returns a text help for the given command alias');
     $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');
 }