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

testInstantiation() public method

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