# File lib/turn/reporters/outline_reporter.rb, line 43
    def start_test(test)
      #if @file != test.file
      #  @file = test.file
      #  io.puts(test.file)
      #end

      # @FIXME: Should we move naturalized_name to test itself?
      name = naturalized_name(test)

      io.print "     %-57s" % name

      @stdout.rewind
      @stderr.rewind

      $stdout = @stdout
      $stderr = @stderr unless $DEBUG
    end