PhpBench\Extensions\Dbal\Tests\Functional\Command\MigrateCommandTest::testMigrate PHP Method

testMigrate() public method

It should migrate the schema.
public testMigrate ( )
    public function testMigrate()
    {
        $this->execute(['--force' => true]);
        $this->assertContains('18 sql statements', $this->output->fetch());
        $this->execute(['--force' => true]);
        return;
        // dbal creates temporary tables, drops the existing tables and then creates new ones.
        // I do not know why, as here the schemas should be identical.
        $this->assertContains('39 sql statements', $this->output->fetch());
    }