Contao\CoreBundle\Test\Command\InstallCommandTest::testInstantiation PHP Method

testInstantiation() public method

Tests the object instantiation.
public testInstantiation ( )
    public function testInstantiation()
    {
        $command = new InstallCommand('contao:install');
        $this->assertInstanceOf('Contao\\CoreBundle\\Command\\InstallCommand', $command);
        $this->assertEquals('contao:install', $command->getName());
    }