Class: Mutant::Reporter::CLI::Printer::Config

Inherits:
Mutant::Reporter::CLI::Printer show all
Defined in:
lib/mutant/reporter/cli/printer/config.rb

Overview

Printer for configuration

Direct Known Subclasses

Runner

Defined Under Namespace

Classes: Runner

Constant Summary

Constants inherited from Mutant::Reporter::CLI::Printer

REGISTRY

Instance Method Summary collapse

Methods inherited from Mutant::Reporter::CLI::Printer

build, finalize, handle, run, visit

Instance Method Details

#runself

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Report configuration

Parameters:

Returns:

  • (self)


23
24
25
26
27
28
29
# File 'lib/mutant/reporter/cli/printer/config.rb', line 23

def run
  info 'Mutant configuration:'
  info 'Matcher:         %s',     matcher.inspect
  info 'Strategy:        %s',     strategy.inspect
  info 'Expect Coverage: %02f%%', expected_coverage.inspect
  self
end