lib/mutant/reporter/cli/printer/env_progress.rb in mutant-0.10.6 vs lib/mutant/reporter/cli/printer/env_progress.rb in mutant-0.10.7
- old
+ new
@@ -8,10 +8,11 @@
class EnvProgress < self
delegate(
:amount_mutation_results,
:amount_mutations_alive,
:amount_mutations_killed,
+ :amount_timeouts,
:coverage,
:env,
:killtime,
:overhead,
:runtime
@@ -19,9 +20,10 @@
FORMATS = IceNine.deep_freeze([
[:info, 'Results: %s', :amount_mutation_results],
[:info, 'Kills: %s', :amount_mutations_killed],
[:info, 'Alive: %s', :amount_mutations_alive ],
+ [:info, 'Timeouts: %s', :amount_timeouts ],
[:info, 'Runtime: %0.2fs', :runtime ],
[:info, 'Killtime: %0.2fs', :killtime ],
[:info, 'Overhead: %0.2f%%', :overhead_percent ],
[:info, 'Mutations/s: %0.2f', :mutations_per_second ],
[:status, 'Coverage: %0.2f%%', :coverage_percent ]