# File lib/simplecov/result_merger.rb, line 53
    def store_result(result)
      new_set = resultset
      command_name, data = result.to_hash.first
      new_set[command_name] = data
      File.open(resultset_path, "w+") do |f|
        f.puts new_set.to_yaml
      end
      true
    end