# File lib/turn/decorators/topten_decorator.rb, line 28
    def finish_suite(suite)
      @reporter.finish_suite(suite)
      io.puts
      io.puts Colorize.bold("Top 10 Longest Running Tests")
      top_ten_times.each do |(test_name, time)|
        io.print format_time(time)
        io.puts format_test_name(test_name, time)
      end
      io.puts
    end