genericThreadSafeTest(false);
}
private void genericThreadSafeTest(boolean pack)
throws Exception {
final CJsonProcessor processor = new CJsonProcessor(pack) {
@Override
protected void onException(final WroRuntimeException e) {
throw e;
}
};
final Callable<Void> task = new Callable<Void>() {
public Void call() {
try {
processor.process(new StringReader("{\"p\" : 1}"), new StringWriter());
} catch (final Exception e) {
throw new RuntimeException(e);
}
return null;
}