Class: Minitest::StatisticsReporter

Inherits:
Reporter show all
Defined in:
lib/minitest.rb

Overview

A reporter that gathers statistics about a test run. Does not do any IO because meant to be used as a parent class for a reporter that does.

If you want to create an entirely different type of output (eg, CI, HTML, etc), this is the place to start.

Example:

class JenkinsCIReporter < StatisticsReporter
  def report
    super  # Needed to calculate some statistics

    print "<testsuite "
    print "tests='#{count}' "
    print "failures='#{failures}' "
    # Remaining XML...
  end
end

Direct Known Subclasses

SummaryReporter

Instance Attribute Summary collapse

Attributes inherited from Reporter

#io, #options

Instance Method Summary collapse

Methods inherited from AbstractReporter

#prerecord, #synchronize

Constructor Details

#initialize(io = $stdout, options = {}) ⇒ StatisticsReporter

:nodoc:



771
772
773
774
775
776
777
778
779
780
781
782
# File 'lib/minitest.rb', line 771

def initialize io = $stdout, options = {} # :nodoc:
  super

  self.assertions = 0
  self.count      = 0
  self.results    = []
  self.start_time = nil
  self.total_time = nil
  self.failures   = nil
  self.errors     = nil
  self.skips      = nil
end

Instance Attribute Details

#assertionsObject

Total number of assertions.



731
732
733
# File 'lib/minitest.rb', line 731

def assertions
  @assertions
end

#countObject

Total number of test cases.



736
737
738
# File 'lib/minitest.rb', line 736

def count
  @count
end

#errorsObject

Total number of tests that erred.



764
765
766
# File 'lib/minitest.rb', line 764

def errors
  @errors
end

#failuresObject

Total number of tests that failed.



759
760
761
# File 'lib/minitest.rb', line 759

def failures
  @failures
end

#resultsObject

An Array of test cases that failed or were skipped.



741
742
743
# File 'lib/minitest.rb', line 741

def results
  @results
end

#skipsObject

Total number of tests that where skipped.



769
770
771
# File 'lib/minitest.rb', line 769

def skips
  @skips
end

#start_timeObject

Time the test run started. If available, the monotonic clock is used and this is a Float, otherwise it’s an instance of Time.



748
749
750
# File 'lib/minitest.rb', line 748

def start_time
  @start_time
end

#total_timeObject

Test run time. If available, the monotonic clock is used and this is a Float, otherwise it’s an instance of Time.



754
755
756
# File 'lib/minitest.rb', line 754

def total_time
  @total_time
end

Instance Method Details

#passed?Boolean

:nodoc:

Returns:

  • (Boolean)


784
785
786
# File 'lib/minitest.rb', line 784

def passed? # :nodoc:
  results.all?(&:skipped?)
end

#record(result) ⇒ Object

:nodoc:



792
793
794
795
796
797
# File 'lib/minitest.rb', line 792

def record result # :nodoc:
  self.count += 1
  self.assertions += result.assertions

  results << result if not result.passed? or result.skipped?
end

#reportObject

Report on the tracked statistics.



802
803
804
805
806
807
808
809
810
# File 'lib/minitest.rb', line 802

def report
  aggregate = results.group_by { |r| r.failure.class }
  aggregate.default = [] # dumb. group_by should provide this

  self.total_time = Minitest.clock_time - start_time
  self.failures   = aggregate[Assertion].size
  self.errors     = aggregate[UnexpectedError].size
  self.skips      = aggregate[Skip].size
end

#startObject

:nodoc:



788
789
790
# File 'lib/minitest.rb', line 788

def start # :nodoc:
  self.start_time = Minitest.clock_time
end