class SimpleCov::Result

def covered_strength

The multiple of coverage for this result
def covered_strength
  return @covered_strength if @covered_strength
  m = 0
  @files.each do |file|
    original_result[file.filename].each do |line_result|
      if line_result
        m += line_result
      end
    end
  end
  @covered_strength = m.to_f / total_lines
end