Package com.ibatis.jpetstore.persistence.iface

Examples of com.ibatis.jpetstore.persistence.iface.CategoryDao


public class DaoManagerTest extends TestCase {

  public void testShouldGetDaoManagerInstance() {
    DaoManager daoMgr = DaoConfig.getDaoManager();
    assertNotNull(daoMgr);
    CategoryDao catDao = (CategoryDao) daoMgr.getDao(CategoryDao.class);
    assertNotNull(catDao);
  }
View Full Code Here

TOP

Related Classes of com.ibatis.jpetstore.persistence.iface.CategoryDao

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.