.setBodyFromString(ENCLOSING_SOURCE)
.addTextAroundBody().build();
transformMediator.mediate(synCtx);
// validate result
OMContainer body = synCtx.getEnvelope().getBody();
if (body.getFirstOMChild().getNextOMSibling() instanceof OMElement) {
OMElement someOtherElem = (OMElement) body.getFirstOMChild().getNextOMSibling();
assertTrue("someOtherElement".equals(someOtherElem.getLocalName()));
assertTrue("http://someother".equals(someOtherElem.getNamespace().getNamespaceURI()));
assertQuoteElement(someOtherElem.getFirstOMChild());
} else {