Class: Mutant::Reporter::CLI::Printer::StatusProgressive Private

Inherits:
Mutant::Reporter::CLI::Printer show all
Defined in:
lib/mutant/reporter/cli/printer/status_progressive.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 progressive output format on scheduler Status objects

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.

'progress: %02d/%02d alive: %d runtime: %0.02fs killtime: %0.02fs mutations/s: %0.02f'

Constants inherited from Mutant::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
30
31
32
33
34
# File 'lib/mutant/reporter/cli/printer/status_progressive.rb', line 24

def run
  status(
    FORMAT,
    amount_mutation_results,
    amount_mutations,
    amount_mutations_alive,
    runtime,
    killtime,
    mutations_per_second
  )
end