Sha256: 08eb6ad10809fcba5db28e43f8c542dc4612f3d0b0d17ed0b68f86dfd62b6692
Contents?: true
Size: 1.2 KB
Versions: 9
Compression:
Stored size: 1.2 KB
Contents
# <!-- rdoc-file=lib/minitest.rb --> # Defines the API for Reporters. Subclass this and override whatever you want. # Go nuts. # class Minitest::AbstractReporter @mutex: untyped def initialize: () -> void # <!-- # rdoc-file=lib/minitest.rb # - start() # --> # Starts reporting on the run. # def start: () -> nil # <!-- # rdoc-file=lib/minitest.rb # - prerecord(klass, name) # --> # About to start running a test. This allows a reporter to show that it is # starting or that we are in the middle of a test run. # def prerecord: (untyped klass, untyped name) -> nil # <!-- # rdoc-file=lib/minitest.rb # - record(result) # --> # Output and record the result of the test. Call # [result#result_code](rdoc-ref:Runnable#result_code) to get the result # character string. Stores the result of the run if the run did not pass. # def record: (untyped result) -> nil # <!-- # rdoc-file=lib/minitest.rb # - report() # --> # Outputs the summary of the run. # def report: () -> nil # <!-- # rdoc-file=lib/minitest.rb # - passed?() # --> # Did this run pass? # def passed?: () -> true def synchronize: () { (?) -> untyped } -> untyped end
Version data entries
9 entries across 9 versions & 2 rubygems