Validate.notEmpty(theOutputDir, "The output directory cannot be null or"
+ " empty.");
Validate.notNull(theLog, "The log cannot be null.");
reporters = new ArrayList<Reporter>(Arrays.asList(new Reporter[] {
new ConsoleReporter(System.out),
new PlainFileReporter(theOutputDir),
new XmlFileReporter(theOutputDir)
}));
for (Reporter reporter : reporters) {