You are here

public function ApplicationTest::testFindAlternativeCommandsWithAnAlias in Zircon Profile 8.0

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

File

vendor/symfony/console/Tests/ApplicationTest.php, line 406

Class

ApplicationTest

Namespace

Symfony\Component\Console\Tests

Code

public function testFindAlternativeCommandsWithAnAlias() {
  $fooCommand = new \FooCommand();
  $fooCommand
    ->setAliases(array(
    'foo2',
  ));
  $application = new Application();
  $application
    ->add($fooCommand);
  $result = $application
    ->find('foo');
  $this
    ->assertSame($fooCommand, $result);
}