module Covered::Sus

def initialize(...)

Loads and starts coverage only when the `COVERAGE` environment variable is set.
Initialize Sus with optional coverage tracking.
def initialize(...)
	super
	
	# Defer loading the coverage configuration unless we are actually running with coverage started to avoid performance cost/overhead:
	if ENV["COVERAGE"]
		require_relative "config"
		
		@covered = Covered::Config.load(root: self.root)
		if @covered.record?
			@covered.start
		end
	else
		@covered = nil
	end
end