class Mutest::Reporter::CLI::Printer::StatusProgressive

Reporter for progressive output format on scheduler Status objects

Constants

FORMAT

Public Instance Methods

run() click to toggle source

Run printer

@return [undefined]

# File lib/mutest/reporter/cli/printer/status_progressive.rb, line 22
def run
  status(
    FORMAT,
    amount_mutations_killed,
    amount_mutations,
    coverage * 100,
    killtime,
    runtime,
    overhead
  )
end

Private Instance Methods

object() click to toggle source

Object being printed

@return [Result::Env]

Calls superclass method
# File lib/mutest/reporter/cli/printer/status_progressive.rb, line 39
def object
  super().payload
end