use of liquibase.diff.core.StandardDiffGenerator in project liquibase by liquibase.
the class DiffGeneratorFactoryTest method getGenerator.
@Test
public void getGenerator() throws DatabaseException {
DiffGenerator generator = DiffGeneratorFactory.getInstance().getGenerator(new H2Database(), new H2Database());
assertNotNull(generator);
assertTrue(generator instanceof StandardDiffGenerator);
}
Aggregations