}
@SuppressWarnings("unchecked")
public void testCopyNonElement() {
ObjectFactory factory = new ObjectFactory();
PurchaseOrderType poType = factory.createPurchaseOrderType();
poType.setComment("Comment");
PurchaseOrderType copy = (PurchaseOrderType)binding.copy(poType, null, null);
assertTrue(copy instanceof PurchaseOrderType);
assertEquals("Comment", (copy).getComment());
}