class Covered::Coverage

def total

@returns [Integer] The sum of all non-`nil` execution counts.
The total number of executions across all tracked lines.
def total
	counts.sum{|count| count || 0}
end