Class: Mutant::Reporter::CLI::Progress::Result::Mutation

Inherits:
Mutant::Reporter::CLI::Progress::Result show all
Defined in:
lib/mutant/reporter/cli/progress/result/mutation.rb

Overview

Mutation test result progress reporter

Constant Summary collapse

SUCCESS =
'.'.freeze
FAILURE =
'F'.freeze

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

Mutant::Reporter::CLI::Printer::NL

Instance Method Summary collapse

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

run

Methods included from Delegator

included

Instance Method Details

#runself

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:

  • (self)


20
21
22
23
# File 'lib/mutant/reporter/cli/progress/result/mutation.rb', line 20

def run
  char(success? ? SUCCESS : FAILURE)
  self
end