class Covered::Statistics

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