test(inputXML, xmlBinding);
}
private void test(String inputXML, XMLBinding xmlBinding) throws SAXException, IOException {
// Read...
Order order = xmlBinding.fromXML(inputXML, Order.class);
assertEquals("Joe & Ray", order.getHeader().getCustomerName());
// write...
String outputXML = xmlBinding.toXML(order);
// System.out.println(outputXML);