private MunitSuiteRunner buildRunnerFor(String fileName)
{
MunitSuiteRunner runner = new MunitSuiteRunner(fileName);
NotificationListenerDecorator listener = new NotificationListenerDecorator();
listener.addNotificationListener(new StreamNotificationListener(System.out));
listener.addNotificationListener(buildFileNotificationListener(fileName));
listener.addNotificationListener(buildXmlNotificationListener(fileName));
runner.setNotificationListener(listener);
return runner;
}