Class: Minitest::AbstractReporter

Inherits:
Object
  • Object
show all
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

CompositeReporter, Reporter

Instance Method Summary collapse

Instance Method Details

#passed?Boolean

Did this run pass?

Returns:

  • (Boolean)


581
582
583
# File 'lib/minitest.rb', line 581

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.



562
563
# File 'lib/minitest.rb', line 562

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.



569
570
# File 'lib/minitest.rb', line 569

def record result
end

#reportObject

Outputs the summary of the run.



575
576
# File 'lib/minitest.rb', line 575

def report
end

#startObject

Starts reporting on the run.



555
556
# File 'lib/minitest.rb', line 555

def start
end