public void testSystemStarted(TestSystem testSystem) {
testSystemName = testSystem.getName();
testSummariesId = "test-system-" + testSystemName;
String tag = String.format("<h3>%s</h3>\n<ul id=\"%s\"></ul>", testSystemName, testSummariesId);
HtmlTag insertScript = HtmlUtil.makeAppendElementScript(TEST_SUMMARIES_ID, tag);
writeData(insertScript.html());
}
protected String makeSummaryContent() {
String summaryContent = "<strong>Test Pages:</strong> " + pageCounts.toString() + " ";
if (latestTestTime != null) {