private static final String TARGET_PACKAGE = "org.megatome.frame2.jaxbgen"; //$NON-NLS-1$
@SuppressWarnings("boxing")
@Test
public void testUnmarshall_InputStream() throws Exception {
PurchaseOrderType po = unmarshall();
assertNotNull(po);
assertEquals("1999-10-20", Helper.calendarToString(po.getOrderDate())); //$NON-NLS-1$
USAddress address = po.getShipTo();
assertNotNull(address);
assertEquals("Alice Smith", address.getName()); //$NON-NLS-1$
Items items = po.getItems();
assertNotNull(items);
assertEquals(2, items.getItem().size());
}