class Covered::Statistics
def << coverage
def << coverage @count += 1 @executable_count += coverage.executable_count @executed_count += coverage.executed_count end
def initialize
def initialize @count = 0 @executable_count = 0 @executed_count = 0 end
def print(output)
def print(output) output.puts "* #{count} files checked; #{executed_count}/#{executable_count} lines executed; #{percentage.to_f.round(2)}% covered." # Could output funny message here, especially for 100% coverage. end