class SimpleCov::CoverageStatistics
def initialize(covered:, missed:, total_strength: 0.0)
Requires only covered, missed and strength to be initialized.
def initialize(covered:, missed:, total_strength: 0.0) @covered = covered @missed = missed @total = covered + missed @percent = compute_percent(covered, missed, total) @strength = compute_strength(total_strength, total) end