CoveredSourceCoveredForks

class Forks

Tracks coverage across forked child processes.

Nested

Definitions

def start

Start tracking coverage and install the fork handler.

Implementation

def start
	super
	
	Handler.start(self)
end

def finish

Stop tracking coverage and remove the fork handler state.

Implementation

def finish
	Handler.finish(self)
	
	super
end