migrator = new DatabaseMigrator(dbClient, migrations, serverUpgradeStatus, null);
}
@Test
public void should_support_only_creation_of_h2_database() throws Exception {
when(dbClient.database().getDialect()).thenReturn(new MySql());
assertThat(migrator.createDatabase()).isFalse();
verify(dbClient, never()).openSession(anyBoolean());
}