Add trace tests.

This commit is contained in:
akwizgran
2017-12-11 18:08:14 +00:00
parent cf51a1e299
commit 5a53665e96
3 changed files with 98 additions and 1 deletions

View File

@@ -92,6 +92,10 @@ class H2Database extends JdbcDatabase {
// Separate the file password from the user password with a space
String hex = StringUtils.toHexString(key.getBytes());
props.put("password", hex + " password");
return DriverManager.getConnection(url, props);
return DriverManager.getConnection(getUrl(), props);
}
String getUrl() {
return url;
}
}