class Mutest::Reporter::CLI::Printer::SubjectResult

Subject result printer

Public Instance Methods

run() click to toggle source

Run report printer

@return [undefined]

# File lib/mutest/reporter/cli/printer/subject_result.rb, line 12
def run
  status(subject.identification)
  tests.each do |test|
    puts("- #{test.identification}")
  end
  visit_collection(MutationResult, alive_mutation_results)
end