class SimpleCov::CoverageStatistics

def compute_strength(total_strength, total)

def compute_strength(total_strength, total)
  return 0.0 if total.zero?
  total_strength.to_f / total
end