LOG.debug("Report written");
}
protected void callSelectedReporter(final String reporterClass, final RootStepResult result) {
try {
final IResultReporter reporter = (IResultReporter) Class.forName(reporterClass).newInstance();
report(reporter, result);
} catch (final Exception e) {
LOG.error("Exception caught while writing test report", e);
}
}