Class: Minitest::SummaryReporter
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
|
|
Instance Chain:
|
|
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.
Class Method Summary
Instance Attribute Summary
StatisticsReporter
- Inherited
#assertions | Total number of assertions. |
#count | Total number of test cases. |
#errors | Total number of tests that erred. |
#failures | Total number of tests that failed. |
#results | An |
#skips | Total number of tests that where skipped. |
#start_time | Time the test run started. |
#total_time |
|
#passed? |
Reporter
- Inherited
AbstractReporter
- Inherited
#passed? | Did this run pass? |
Instance Method Summary
-
#binary_string
private
See additional method definition at line 826.
- #aggregated_results(io) Internal use only
- #report Internal use only
- #start Internal use only
- #statistics Internal use only
- #summary Internal use only
- #to_s Internal use only
StatisticsReporter
- Inherited
AbstractReporter
- Inherited
#prerecord | About to start running a test. |
#record | Output and record the result of the test. |
#report | Outputs the summary of the run. |
#start | Starts reporting on the run. |
Constructor Details
This class inherits a constructor from Minitest::StatisticsReporter
Instance Attribute Details
#old_sync (rw)
# File 'lib/minitest.rb', line 762
attr_accessor :old_sync
#sync (rw)
# File 'lib/minitest.rb', line 761
attr_accessor :sync
Instance Method Details
#aggregated_results(io)
# File 'lib/minitest.rb', line 794
def aggregated_results io # :nodoc: filtered_results = results.dup filtered_results.reject!(&:skipped?) unless [:verbose] skip = [:skip] || [] filtered_results.each_with_index { |result, i| next if skip.include? result.result_code io.puts "\n%3d) %s" % [i+1, result] } io.puts io end
#binary_string (private)
See additional method definition at line 826.
# File 'lib/minitest.rb', line 828
def binary_string; ''.b; end
#report
# File 'lib/minitest.rb', line 777
def report # :nodoc: super io.sync = self.old_sync io.puts unless [:verbose] # finish the dots io.puts io.puts statistics aggregated_results io io.puts summary end
#start
#statistics
# File 'lib/minitest.rb', line 789
def statistics # :nodoc: "Finished in %.6fs, %.4f runs/s, %.4f assertions/s." % [total_time, count / total_time, assertions / total_time] end
#summary
# File 'lib/minitest.rb', line 813
def summary # :nodoc: extra = "" extra = "\n\nYou have skipped tests. Run with --verbose for details." if results.any?(&:skipped?) unless [:verbose] or ENV["MT_NO_SKIP_MSG"] "%d runs, %d assertions, %d failures, %d errors, %d skips%s" % [count, assertions, failures, errors, skips, extra] end
#to_s
# File 'lib/minitest.rb', line 809
def to_s # :nodoc: aggregated_results(StringIO.new(binary_string)).string end