class Covered::Coverage

def missing_count

@returns [Integer] The number of missing executable lines.
The number of executable lines that were not executed.
def missing_count
	executable_count - executed_count
end