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

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


      assertEquals(bar3.getValue(), new MyNumber("123456789"));
   }

   public void testFoo4Wrapper() throws Exception
   {
      Foo4 foo = unmarshalObject(Foo4.class);
      Number[] items = foo.getItems();
      assertEquals(4, items.length);
      assertEquals(1, items[0]);
      assertEquals(2, items[1]);
      assertEquals(new Float(1.1), items[2]);
      assertEquals(new MyNumber("123456789"), items[3]);
View Full Code Here

TOP

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

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.