class Covered::Config

def initialize(root, reports, persist = true)

@parameter persist [Boolean] Whether the configured policy should persist coverage to the default database.
@parameter reports [String | Boolean | Array | Object | Nil] The report configuration.
@parameter root [String] The project root.
Initialize the configuration for a project root and reports.
def initialize(root, reports, persist = true)
	@root = root
	@reports = reports
	@policy = nil
	@persist = persist
	
	@environment = nil
end