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

Inherits:
Mutant::Reporter::CLI::Printer::Test show all
Defined in:
lib/mutant/reporter/cli/printer/test.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 failed: %d runtime: %0.02fs testtime: %0.02fs tests/s: %0.02f'

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

NL

Instance Method Summary collapse

Methods inherited from Mutant::Reporter::CLI::Printer

#call

Methods included from Procto

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)


112
113
114
115
116
117
118
119
120
121
122
# File 'lib/mutant/reporter/cli/printer/test.rb', line 112

def run
  status(
    FORMAT,
    amount_test_results,
    amount_tests,
    amount_tests_failed,
    runtime,
    testtime,
    tests_per_second
  )
end