remove duplicated test

This commit is contained in:
Christian Flothmann 2019-09-30 16:33:22 +02:00
parent 001777ac07
commit 4c1b66c6de
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();