// create the target database.
EmbeddedDataSource ds = MigrationHelper.getDataSource(DB_NAME);
RDBMSTool tool = new RDBMSTool(ds.getConnection());
Database schema = MigrationHelper.getSchema();
tool.drop(schema);
tool.create(schema);
// Create the exporter
try {
new Exporter(config, DB_NAME, false);
fail("Expected Exporter construction to fail, as tables exist");