expectationResult.evaluationMessage = testResult.getMessage();
if (testResult.getExecutionResult() != null) {
expectationResult.status = testResult.getExecutionResult().toString();
}
if (expectation instanceof TableCell) {
TableCell cell = (TableCell) expectation;
expectationResult.col = Integer.toString(cell.getCol());
expectationResult.row = Integer.toString(cell.getRow());
}
} catch (Throwable e) {
LOG.log(Level.WARNING, "Unable to process assertion " + assertion + " with test result " + testResult, e);
}
}