Symfony\Bundle\FrameworkBundle\Tests\Console\ApplicationTest::testBundleCommandsAreRegistered PHP Method

testBundleCommandsAreRegistered() public method

    public function testBundleCommandsAreRegistered()
    {
        $bundle = $this->createBundleMock(array());
        $kernel = $this->getKernel(array($bundle), true);
        $application = new Application($kernel);
        $application->doRun(new ArrayInput(array('list')), new NullOutput());
        // Calling twice: registration should only be done once.
        $application->doRun(new ArrayInput(array('list')), new NullOutput());
    }