Package org.jboss.test.ws.jaxrpc.encoded.parametermode.holders

Examples of org.jboss.test.ws.jaxrpc.encoded.parametermode.holders.ArrayOfBookHolder


   public void testEchoInOutBookArray() throws Exception
   {
      Book book1 = new Book("author1", "title1", 12345);
      Book book2 = new Book("author2", "title2", 67890);
      ArrayOfBookHolder holder = new ArrayOfBookHolder(new Book[] { book1, book2 });
      port.echoInOutBookArray(holder);
      assertEquals(new Book[] { book1, book2 }, holder.value);
   }
View Full Code Here


   public void testEchoInOutBookArray() throws Exception
   {
      Book book1 = new Book("author1", "title1", 12345);
      Book book2 = new Book("author2", "title2", 67890);
      ArrayOfBookHolder holder = new ArrayOfBookHolder(new Book[] { book1, book2 });
      port.echoInOutBookArray(holder);
      assertEquals(new Book[] { book1, book2 }, holder.value);
   }
View Full Code Here

TOP

Related Classes of org.jboss.test.ws.jaxrpc.encoded.parametermode.holders.ArrayOfBookHolder

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.