Class: Mutant::Reporter::CLI::Printer::EnvProgress

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

Overview

Env progress printer

Constant Summary collapse

FORMATS =

rubocop:disable SpaceInsideBrackets

IceNine.deep_freeze([
  [:info,   'Subjects:        %s',      :amount_subjects          ],
  [:info,   'Mutations:       %s',      :amount_mutations         ],
  [:info,   'Results:         %s',      :amount_mutation_results  ],
  [:info,   'Kills:           %s',      :amount_mutations_killed  ],
  [:info,   'Alive:           %s',      :amount_mutations_alive   ],
  [:info,   'Runtime:         %0.2fs',  :runtime                  ],
  [:info,   'Killtime:        %0.2fs',  :killtime                 ],
  [:info,   'Overhead:        %0.2f%%', :overhead_percent         ],
  [:info,   'Mutations/s:     %0.2f',   :mutations_per_second     ],
  [:status, 'Coverage:        %0.2f%%', :coverage_percent         ],
  [:status, 'Expected:        %0.2f%%', :expected_coverage_percent]
])

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

NL

Instance Method Summary collapse

Methods included from Delegator

included

Instance Method Details

#runundefined

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.

Run printer

Returns:

  • (undefined)


40
41
42
43
44
45
# File 'lib/mutant/reporter/cli/printer/env_progress.rb', line 40

def run
  visit(Config, env.config)
  FORMATS.each do |report, format, value|
    __send__(report, format, __send__(value))
  end
end