public function ApplicationTest::testGetInvalidCommand in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Tests/ApplicationTest.php \Symfony\Component\Console\Tests\ApplicationTest::testGetInvalidCommand()
@expectedException \InvalidArgumentException @expectedExceptionMessage The command "foofoo" does not exist.
File
- vendor/
symfony/ console/ Tests/ ApplicationTest.php, line 182
Class
Namespace
Symfony\Component\Console\TestsCode
public function testGetInvalidCommand() {
$application = new Application();
$application
->get('foofoo');
}