Contao\CoreBundle\Test\Command\FilesyncCommandTest::testInstantiation PHP 메소드

testInstantiation() 공개 메소드

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());
    }