Defines the API for Reporters. Subclass this and override whatever you want. Go nuts.
Did this run pass?
# File lib/minitest.rb, line 431 def passed? true end
Record a result and output the Minitest::Runnable#result_code. Stores the result of the run if the run did not pass.
# File lib/minitest.rb, line 419 def record result end
Outputs the summary of the run.
# File lib/minitest.rb, line 425 def report end
Starts reporting on the run.
# File lib/minitest.rb, line 412 def start end