Package com.l2client.dao

Examples of com.l2client.dao.IDAO



public class DAOActionLoadCsvTest extends TestCase{
 
  public void testSelf() {
    final IDAO dao = CSVDatastoreDAO.get();
    dao.init();
//    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



public class DAOActionLoadTest extends TestCase{
 
  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

Related Classes of com.l2client.dao.IDAO

Copyright © 2018 www.massapicom. 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.