Class: Mutest::Reporter::CLI::Printer::SubjectProgress Private

Inherits:
Mutest::Reporter::CLI::Printer show all
Defined in:
lib/mutest/reporter/cli/printer/subject_progress.rb

Overview

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

Reporter for subject progress

Constant Summary collapse

FORMAT =

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

'(%02d/%02d) %3d%% - killtime: %0.02fs runtime: %0.02fs overhead: %0.02fs'.freeze

Constants inherited from Mutest::Reporter::CLI::Printer

NL

Instance Method Summary collapse

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)


24
25
26
27
28
29
# File 'lib/mutest/reporter/cli/printer/subject_progress.rb', line 24

def run
  puts("#{subject.identification} mutations: #{amount_mutations}")
  print_mutation_results
  print_progress_bar_finish
  print_stats
end