Package com.alexgilleran.icesoap.parser.test.xmlclasses

Examples of com.alexgilleran.icesoap.parser.test.xmlclasses.CustsAndOrders


  public void testListsInTypes() throws XMLParsingException, ParseException {
    IceSoapParser<CustsAndOrders> parser = new IceSoapParserImpl<CustsAndOrders>(
        CustsAndOrders.class);

    // Get customers and orders
    CustsAndOrders custsAndOrders = parser.parse(SampleXml
        .getCustomersAndOrders());

    checkCustomerList(custsAndOrders.getCustomers());
    checkOrderList(custsAndOrders.getOrders());
    assertEquals(custsAndOrders.getDifficultField(), "Hello!");
  }
View Full Code Here

TOP

Related Classes of com.alexgilleran.icesoap.parser.test.xmlclasses.CustsAndOrders

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.