}
@Test(dataProvider = "tables")
public void hsqlReplication(String table) {
DatabaseWrapper target = new DatabaseWrapper("PUBLIC");
target.connect(DataSourceUtil.getDataSource("hsqldb_target"), new HSQLDialect());
Replicator replicator = new DatabaseReplicator(source, target);
replicator.addTable(table);
replicator.start();
}