# File lib/simplecov/result_merger.rb, line 24
    def results
      results = []
      resultset.each do |command_name, data| 
        result = SimpleCov::Result.from_hash(command_name => data)
        # Only add result if the timeout is above the configured threshold
        if (Time.now - result.created_at) < SimpleCov.merge_timeout
          results << result
        end
      end
      results
    end