Class: Minitest::AbstractReporter

Inherits:
Object
  • Object
show all
Defined in:
lib/minitest.rb

Overview

Defines the API for Reporters. Subclass this and override whatever you want. Go nuts.

Instance Method Summary collapse

Constructor Details

#initializeAbstractReporter

:nodoc:



709
710
711
# File 'lib/minitest.rb', line 709

def initialize # :nodoc:
  @mutex = Mutex.new
end

Instance Method Details

#passed?Boolean

Did this run pass?

Returns:

  • (Boolean)


744
745
746
# File 'lib/minitest.rb', line 744

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.



723
724
# File 'lib/minitest.rb', line 723

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.



732
733
# File 'lib/minitest.rb', line 732

def record result
end

#reportObject

Outputs the summary of the run.



738
739
# File 'lib/minitest.rb', line 738

def report
end

#startObject

Starts reporting on the run.



716
717
# File 'lib/minitest.rb', line 716

def start
end

#synchronize(&block) ⇒ Object

:nodoc:



748
749
750
# File 'lib/minitest.rb', line 748

def synchronize &block # :nodoc:
  @mutex.synchronize(&block)
end