Package org.jboss.test.xb.builder.object.element.javatypeadapter.support

Examples of org.jboss.test.xb.builder.object.element.javatypeadapter.support.Root


   }

   @SuppressWarnings("unchecked")
   public void testMap() throws Exception
   {
      Root root = unmarshalObject(Root.class);
      Map<Integer, String> map = root.getMap();
      assertNotNull(map);
      assertEquals(3, map.size());
      assertEquals("value1", map.get(1));
      assertEquals("value22", map.get(22));
      assertEquals("value333", map.get(333));
View Full Code Here

TOP

Related Classes of org.jboss.test.xb.builder.object.element.javatypeadapter.support.Root

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.