minor #33762 [Console] remove duplicated test (xabbuh)

This PR was merged into the 4.4 branch.

Discussion
----------

[Console] remove duplicated test

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | no
| New feature?  | no
| Deprecations? | no
| Tickets       |
| License       | MIT
| Doc PR        |

Commits
-------

4c1b66c6de remove duplicated test
This commit is contained in:
Fabien Potencier 2019-10-01 01:04:49 +02:00
commit f4af6d2273
1 changed files with 0 additions and 10 deletions

View File

@ -752,16 +752,6 @@ class ApplicationTest extends TestCase
];
}
public function testFindAmbiguousCommandsIfAllAlternativesAreHidden()
{
$application = new Application();
$application->add(new \FooCommand());
$application->add(new \FooHiddenCommand());
$this->assertInstanceOf('FooCommand', $application->find('foo:'));
}
public function testSetCatchExceptions()
{
$application = new Application();