# File lib/turn/reporters/outline_reporter.rb, line 21
    def start_suite(suite)
      @suite  = suite
      @time   = Time.now
      # @FIXME (y8): Why we need to capture stdout and stderr?
      @stdout = StringIO.new
      @stderr = StringIO.new
      #files  = suite.collect{ |s| s.file }.join(' ')
      puts '=' * 78
      if suite.seed
        io.puts "SUITE #{suite.name} (SEED #{suite.seed})"
      else
        io.puts "SUITE #{suite.name}"
      end
      puts '=' * 78
    end