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

testInstantiation() public method

Tests the object instantiation.
public testInstantiation ( )
    public function testInstantiation()
    {
        $command = new DoctrineMigrationsDiffCommand();
        $this->assertInstanceOf('Contao\\CoreBundle\\Command\\DoctrineMigrationsDiffCommand', $command);
        $this->assertEquals('doctrine:migrations:diff', $command->getName());
    }
DoctrineMigrationsDiffCommandTest