Package com.testdomain

Examples of com.testdomain.ComplexBean


  protected void tearDown() throws Exception {
  }

  public void testMapBeanMap() throws Exception {
    Map map = new HashMap();
    ComplexBean bean = new ComplexBean();
    bean.setMap(new HashMap());
    bean.getMap().put("id", new Integer(1));
    map.put("bean", bean);

    Integer id = (Integer) sqlMap.queryForObject("mapBeanMap", map);

    assertEquals(id, bean.getMap().get("id"));
  }
View Full Code Here

TOP

Related Classes of com.testdomain.ComplexBean

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.