JsonAssert.assertJsonEquals("{}", converter.convertToString(empty));
}
private CajoledResult cajole(Uri uri, String mime, String content) throws ParseException {
CajaContentRewriter rw = new CajaContentRewriter(null, null, null, proxyUriManager);
InputSource is = new InputSource(uri.toJavaUri());
MessageQueue mq = new SimpleMessageQueue();
CharProducer cp = CharProducer.Factory.create(new StringReader(content), is);
return rw.rewrite(uri, CONTAINER, CajaContentRewriter.parse(is, cp, mime, mq), false, false);
}