Class: Mutant::Reporter::CLI::Printer::SubjectResult
- Inherits:
-
Mutant::Reporter::CLI::Printer
- Object
- Mutant::Reporter::CLI::Printer
- Mutant::Reporter::CLI::Printer::SubjectResult
- Defined in:
- lib/mutant/reporter/cli/printer.rb
Overview
Subject report printer
Constant Summary
Constants inherited from Mutant::Reporter::CLI::Printer
Instance Method Summary collapse
-
#run ⇒ self
private
Run report 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 report printer
278 279 280 281 282 283 284 285 |
# File 'lib/mutant/reporter/cli/printer.rb', line 278 def run status(subject.identification) subject.tests.each do |test| puts("- #{test.identification}") end visit_collection(MutationResult, object.alive_mutation_results) self end |