Examples of finit()


Examples of com.l2client.dao.IDAO.finit()

//    InputController.getInstance().setInGameInputHandler(new InputHandler());
    BaseUsable[] ret = dao.loadAllActions();
    String name = dao.getNpcName(30370);
    assertTrue("Any actions returned", ret != null && ret.length > 0);
    assertNotNull(name);
    dao.finit();
  }

}
View Full Code Here

Examples of com.l2client.dao.IDAO.finit()

  public void testSelf() {
    final IDAO dao = DatastoreDAO.get();
    dao.init();
//    InputController.getInstance().setInGameInputHandler(new InputHandler());
    BaseUsable[] ret = dao.loadAllActions();
    dao.finit();
    assertTrue("Any actions returned", ret != null && ret.length > 0);

  }

}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.