result = xmlDocument;
}
testOutput = testOutput + "<td>";
for (int n=0; n<repeatCount; n++) {
long startTime = System.currentTimeMillis();
EventNotification notification = new EventNotification();
notification.parse(result);
testOutput = testOutput + "<li>Test Run " + (n+1) + " = " + (System.currentTimeMillis() - startTime) + "ms</li>";
}
testOutput = testOutput + "</td>";
}
sizeBytes = result.getBytes().length;