Class: Mutant::Reporter::CLI::Printer::MutationProgressResult Private
- Inherits:
-
Mutant::Reporter::CLI::Printer
- Object
- Mutant::Reporter::CLI::Printer
- Mutant::Reporter::CLI::Printer::MutationProgressResult
- Defined in:
- lib/mutant/reporter/cli/printer/mutation_progress_result.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.
Printer for mutation progress results
Constant Summary collapse
- SUCCESS =
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.
'.'
- FAILURE =
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.
'F'
Constants inherited from Mutant::Reporter::CLI::Printer
Instance Method Summary collapse
-
#run ⇒ undefined
private
Run printer.
Instance Method Details
#run ⇒ undefined
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
15 16 17 |
# File 'lib/mutant/reporter/cli/printer/mutation_progress_result.rb', line 15 def run char(success? ? SUCCESS : FAILURE) end |