You are here

public function HelpCommandTest::testExecuteForCommand in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/console/Tests/Command/HelpCommandTest.php \Symfony\Component\Console\Tests\Command\HelpCommandTest::testExecuteForCommand()

File

vendor/symfony/console/Tests/Command/HelpCommandTest.php, line 32

Class

HelpCommandTest

Namespace

Symfony\Component\Console\Tests\Command

Code

public function testExecuteForCommand() {
  $command = new HelpCommand();
  $commandTester = new CommandTester($command);
  $command
    ->setCommand(new ListCommand());
  $commandTester
    ->execute(array(), array(
    'decorated' => false,
  ));
  $this
    ->assertContains('list [options] [--] [<namespace>]', $commandTester
    ->getDisplay(), '->execute() returns a text help for the given command');
  $this
    ->assertContains('format=FORMAT', $commandTester
    ->getDisplay(), '->execute() returns a text help for the given command');
  $this
    ->assertContains('raw', $commandTester
    ->getDisplay(), '->execute() returns a text help for the given command');
}