randomJsopGenerator = new RandomJsopGenerator();
}
private void startCommitting() throws Exception {
while (true) {
RandomJsop randomJsop = randomJsopGenerator.nextRandom();
String commitPath = randomJsop.getPath();
String jsonDiff = randomJsop.getJsop();
String revisionId = null;
String message = randomJsop.getMessage();
commitMonitor.start();
String newRevisionId = microKernel.commit(commitPath, jsonDiff, revisionId, message);
commitMonitor.stop();
PERF.info(commitMonitor);