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

testInstantiation() public method

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