Class: Minitest::AbstractReporter
Overview
Defines the API for Reporters. Subclass this and override whatever you want. Go nuts.
Direct Known Subclasses
Instance Method Summary collapse
-
#initialize ⇒ AbstractReporter
constructor
:nodoc:.
-
#passed? ⇒ Boolean
Did this run pass?.
-
#prerecord(klass, name) ⇒ Object
About to start running a test.
-
#record(result) ⇒ Object
Output and record the result of the test.
-
#report ⇒ Object
Outputs the summary of the run.
-
#start ⇒ Object
Starts reporting on the run.
-
#synchronize(&block) ⇒ Object
:nodoc:.
Constructor Details
#initialize ⇒ AbstractReporter
:nodoc:
688 689 690 |
# File 'lib/minitest.rb', line 688 def initialize # :nodoc: @mutex = Mutex.new end |
Instance Method Details
#passed? ⇒ Boolean
Did this run pass?
723 724 725 |
# File 'lib/minitest.rb', line 723 def passed? true end |
#prerecord(klass, name) ⇒ Object
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.
702 703 |
# File 'lib/minitest.rb', line 702 def prerecord klass, name end |
#record(result) ⇒ Object
Output and record the result of the test. Call result#result_code to get the result character string. Stores the result of the run if the run did not pass.
711 712 |
# File 'lib/minitest.rb', line 711 def record result end |
#report ⇒ Object
Outputs the summary of the run.
717 718 |
# File 'lib/minitest.rb', line 717 def report end |
#start ⇒ Object
Starts reporting on the run.
695 696 |
# File 'lib/minitest.rb', line 695 def start end |
#synchronize(&block) ⇒ Object
:nodoc:
727 728 729 |
# File 'lib/minitest.rb', line 727 def synchronize &block # :nodoc: @mutex.synchronize(&block) end |