Class: Mutant::Reporter::CLI::Printer::SubjectProgress
- Inherits:
-
Mutant::Reporter::CLI::Printer
- Object
- Mutant::Reporter::CLI::Printer
- Mutant::Reporter::CLI::Printer::SubjectProgress
- Defined in:
- lib/mutant/reporter/cli/printer.rb
Overview
Reporter for subject progress
Constant Summary collapse
- FORMAT =
'(%02d/%02d) %3d%% - killtime: %0.02fs runtime: %0.02fs overhead: %0.02fs'.freeze
Constants inherited from Mutant::Reporter::CLI::Printer
Instance Method Summary collapse
-
#run ⇒ self
private
Run printer.
Methods inherited from Mutant::Reporter::CLI::Printer
Methods included from Delegator
Instance Method Details
#run ⇒ self
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
420 421 422 423 424 425 426 427 |
# File 'lib/mutant/reporter/cli/printer.rb', line 420 def run puts("#{subject.identification} mutations: #{amount_mutations}") print_tests print_mutation_results print_stats self end |