public RunListener(IConsole console, IOutput output, TimingRunListener timer)
 {
     _console = console;
     _timer   = timer;
     _output  = output;
     _summary = new FailedSpecificationsSummary(new VerboseOutput(console), console);
 }
 public ConsoleOutputRunListener()
 {
     _console = new DefaultConsole();
     _timer   = new RunStats();
     _output  = new ProgressOutput(_console);
     _summary = new FailedSpecificationsSummary(new VerboseOutput(_console), _console);
 }