# File lib/simplecov/result_merger.rb, line 68
      def merge_results(*results)
        merged = SimpleCov::RawCoverage.merge_results(*results.map(&:original_result))
        result = SimpleCov::Result.new(merged)
        # Specify the command name
        result.command_name = results.map(&:command_name).sort.join(", ")
        result
      end