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)


586
587
588
# File 'lib/minitest.rb', line 586

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.



565
566
# File 'lib/minitest.rb', line 565

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.



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

def record result
end

#reportObject

Outputs the summary of the run.



580
581
# File 'lib/minitest.rb', line 580

def report
end

#startObject

Starts reporting on the run.



558
559
# File 'lib/minitest.rb', line 558

def start
end