Package org.apache.ibatis.submitted.initialized_collection_property.test

Examples of org.apache.ibatis.submitted.initialized_collection_property.test.AuthorDAO


    runner.setErrorLogWriter(null);
    reader = Resources.getResourceAsReader("org/apache/ibatis/submitted/initialized_collection_property/db/create.sql");
    runner.runScript(reader);
    session.close();

    AuthorDAO dao = new AuthorDAO(factory);
    List<Author> authors = dao.getAuthors();
    assertEquals(1, authors.size());
  }
View Full Code Here

TOP

Related Classes of org.apache.ibatis.submitted.initialized_collection_property.test.AuthorDAO

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.