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)


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

def run
  info 'Mutant configuration:'
  info 'Matcher:        %s', object.matcher.inspect
  info 'Subject Filter: %s', object.subject_predicate.inspect
  info 'Strategy:       %s', object.strategy.inspect
  self
end