class Mutest::Reporter::CLI::Printer::MutationProgressResult
Printer
for mutation progress results
Constants
- FAILURE
- SUCCESS
Public Instance Methods
run()
click to toggle source
Run printer
@return [undefined]
# File lib/mutest/reporter/cli/printer/mutation_progress_result.rb, line 13 def run char(success? ? SUCCESS : FAILURE) end
Private Instance Methods
char(char)
click to toggle source
Write colorized char
@param [String] char
@return [undefined]
# File lib/mutest/reporter/cli/printer/mutation_progress_result.rb, line 24 def char(char) output.write(colorize(status_color, char)) end