table.updateContent(0, missingRow, testResult);
getTestContext().increment(testResult.getExecutionResult());
}
protected ExecutionResult markSurplusRows(final QueryResults queryResults, List<Integer> unmatchedRows) {
ExecutionResult result = ExecutionResult.PASS;
for (int unmatchedRow : unmatchedRows) {
List<String> surplusRow = queryResults.getList(fieldNames, unmatchedRow);
int newTableRow = table.addRow(surplusRow);
SlimTestResult testResult = SlimTestResult.fail(surplusRow.get(0), null, "surplus");
table.updateContent(0, newTableRow, testResult);