Reporter[] reporters;
try {
String basename = "target/benchmarks/xmlfriendly-"
+ System.getProperty("user.name");
reporters = new Reporter[]{
new TextReporter(), new TextReporter(new FileWriter(basename + ".txt")),
new HtmlReporter(new File(basename + ".html"), "XmlFriendlyReplacer Benchmark")};
} catch (IOException e) {
throw new RuntimeException(e);
}