class Covered::Forks

Tracks coverage across forked child processes.

def finish

Stop tracking coverage and remove the fork handler state.
def finish
	Handler.finish
	
	super
end

def start

Start tracking coverage and install the fork handler.
def start
	super
	
	Handler.start(self)
end