public function ApplicationTest::testFindCommandWithMissingNamespace in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Tests/ApplicationTest.php \Symfony\Component\Console\Tests\ApplicationTest::testFindCommandWithMissingNamespace()
File
- vendor/
symfony/ console/ Tests/ ApplicationTest.php, line 306
Class
Namespace
Symfony\Component\Console\TestsCode
public function testFindCommandWithMissingNamespace() {
$application = new Application();
$application
->add(new \Foo4Command());
$this
->assertInstanceOf('Foo4Command', $application
->find('f::t'));
}