}
private String runBasicTest(Smooks smooks, ExecutionContext execContext) {
StringWriter reportWriter = new StringWriter();
execContext.setEventListener(new FlatReportGenerator(new ReportConfiguration(reportWriter)));
smooks.filterSource(execContext, new StreamSource(getClass().getResourceAsStream("test-data-01.xml")), new StreamResult(new StringWriter()));
log.debug(reportWriter);
return reportWriter.toString();
}