Class: Minitest::AbstractReporter
- Includes:
- Mutex_m
- Defined in:
- lib/minitest.rb
Overview
Defines the API for Reporters. Subclass this and override whatever you want. Go nuts.
Direct Known Subclasses
Instance Method Summary collapse
-
#passed? ⇒ Boolean
Did this run pass?.
-
#prerecord(klass, name) ⇒ Object
About to start running a test.
-
#record(result) ⇒ Object
Record a result and output the Runnable#result_code.
-
#report ⇒ Object
Outputs the summary of the run.
-
#start ⇒ Object
Starts reporting on the run.
Instance Method Details
#passed? ⇒ Boolean
Did this run pass?
457 458 459 |
# File 'lib/minitest.rb', line 457 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.
438 439 |
# File 'lib/minitest.rb', line 438 def prerecord klass, name end |
#record(result) ⇒ Object
Record a result and output the Runnable#result_code. Stores the result of the run if the run did not pass.
445 446 |
# File 'lib/minitest.rb', line 445 def record result end |
#report ⇒ Object
Outputs the summary of the run.
451 452 |
# File 'lib/minitest.rb', line 451 def report end |
#start ⇒ Object
Starts reporting on the run.
431 432 |
# File 'lib/minitest.rb', line 431 def start end |