Class: Minitest::AbstractReporter
- Inherits:
-
Object
- Object
- Minitest::AbstractReporter
- Defined in:
- lib/minitest.rb
Overview
Defines the API for Reporters. Subclass this and override whatever you want. Go nuts.
Direct Known Subclasses
CompositeReporter, Reporter, ServerReporter, Sprint::SprintReporter
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:
708 709 710 |
# File 'lib/minitest.rb', line 708 def initialize # :nodoc: @mutex = Mutex.new end |
Instance Method Details
#passed? ⇒ Boolean
Did this run pass?
743 744 745 |
# File 'lib/minitest.rb', line 743 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.
722 723 |
# File 'lib/minitest.rb', line 722 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.
731 732 |
# File 'lib/minitest.rb', line 731 def record result end |
#report ⇒ Object
Outputs the summary of the run.
737 738 |
# File 'lib/minitest.rb', line 737 def report end |
#start ⇒ Object
Starts reporting on the run.
715 716 |
# File 'lib/minitest.rb', line 715 def start end |
#synchronize(&block) ⇒ Object
:nodoc:
747 748 749 |
# File 'lib/minitest.rb', line 747 def synchronize &block # :nodoc: @mutex.synchronize(&block) end |