private void copyTest(SingleBody body) throws Exception {
MessageImpl parent = new MessageImpl();
parent.setBody(body);
SingleBody copy = body.copy();
assertNotNull(copy);
assertNotSame(body, copy);
assertSame(parent, body.getParent());
assertNull(copy.getParent());
sameContentTest(body, copy);
}