@Test
public void canImport_usingJdbcConnection() {
DbSchemaUtil ds = new DbSchemaUtil(this.em);
ds.prepareDefaultTestData(true, true, true);
this.emUtil.doWork(new Work() {
@Override
public void execute(Connection connection) throws SQLException {
URL url = JuUrl.resource("ch/inftec/ju/testing/db/DbDataUtilTest_jdbcConnectionImport.xml");
DbDataUtil.executeInsert(connection, url, true);
}