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

Examples of org.jboss.test.xb.builder.object.element.wrapper.support.Foo2


   }

   public void testFoo2Wrapper()
      throws Exception
   {
      Foo2 foo = unmarshalObject(Foo2.class);
      List<Number> items = foo.getItems();
      assertEquals(4, items.size());
      assertEquals(4, items.size());
      assertEquals(1, items.get(0));
      assertEquals(2, items.get(1));
      assertEquals(new Float(1.1), items.get(2));
View Full Code Here

TOP

Related Classes of org.jboss.test.xb.builder.object.element.wrapper.support.Foo2

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.