}
}
private CombinedListener createListeners(GalenArguments arguments) throws IOException, SecurityException, IllegalArgumentException, ClassNotFoundException, NoSuchMethodException, InstantiationException, IllegalAccessException, InvocationTargetException {
CombinedListener combinedListener = new CombinedListener();
combinedListener.add(new ConsoleReportingListener(System.out, System.out));
//Adding all user defined listeners
List<CompleteListener> configuredListeners = getConfiguredListeners();
for (CompleteListener configuredListener : configuredListeners) {
combinedListener.add(configuredListener);