Class: Mutant::Config

Inherits:
Object
  • Object
show all
Includes:
Adamantium::Flat, Anima::Update
Defined in:
lib/mutant.rb,
lib/mutant/config.rb

Overview

The configuration of a mutator run

Constant Summary collapse

DEFAULT =
new(
  debug:             false,
  fail_fast:         false,
  integration:       Integration::Null.new,
  matcher_config:    Matcher::Config::DEFAULT,
  includes:          [],
  requires:          [],
  isolation:         Mutant::Isolation::Fork,
  reporter:          Reporter::CLI.new($stdout),
  zombie:            false,
  expected_coverage: 100.0
)