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

testInstantiation() public method

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