assertEquals(new QName("http://www.example.com/IPO", "purchaseOrder"), copy.getName());
}
@Test
public void testCopyNonElement() {
ObjectFactory factory = new ObjectFactory();
PurchaseOrderType poType = factory.createPurchaseOrderType();
poType.setComment("Comment");
PurchaseOrderType copy = (PurchaseOrderType)binding.copy(poType, null, null, null, null);
assertTrue(copy instanceof PurchaseOrderType);
assertEquals("Comment", (copy).getComment());
}