Class: Minitest::SummaryReporter
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
| Class Chain: 
          self,
          AbstractReporter
         | |
| Instance Chain: 
          self,
          AbstractReporter,
          Mutex_m
         | |
| Inherits: | Minitest::StatisticsReporter 
 | 
| Defined in: | lib/minitest.rb | 
Overview
A reporter that prints the header, summary, and failure details at the end of the run.
This is added to the top-level CompositeReporter at the start of the run. If you want to change the output of minitest via a plugin, pull this out of the composite and replace it with your own.
Instance Attribute Summary
AbstractReporter - Inherited
| #passed? | Did this run pass? | 
Instance Method Summary
- 
    
      #to_s  
    
    Alias for #aggregated_results. 
AbstractReporter - Inherited
| #prerecord | About to start running a test. | 
| #record | Record a result and output the Runnable#result_code. | 
| #report | Outputs the summary of the run. | 
| #start | Starts reporting on the run. | 
Instance Method Details
#to_s
Alias for #aggregated_results.
# File 'lib/minitest.rb', line 619
alias to_s aggregated_results