if (allTables.size() == 0) {
String html = createHtmlResults(START_OF_TEST, END_OF_TEST);
testOutputChunk(html);
} else {
for (int index = 0; index < allTables.size(); index++) {
SlimTable theTable = allTables.get(index);
SlimTable startWithTable = (index == 0) ? START_OF_TEST : theTable;
SlimTable nextTable = (index + 1 < allTables.size()) ? allTables.get(index + 1) : END_OF_TEST;
try {
processTable(theTable);
} catch (SyntaxError e) {
String tableName = theTable.getTable().getCellContents(0, 0);