public static void initDbManager() {
   // to be able to do lazy loading of associations inside test class
   DbManager dbManager = new DbManager();
   dbManager.setDbname("Library-test");
   DbManager.setThreadInstance(dbManager);
 }
 @Before
 public void initDbManagerThreadInstance() throws Exception {
   // to be able to do lazy loading of associations inside test class
   DbManager.setThreadInstance(dbManager);
 }