Class: Betatest::AbstractReporter

Inherits:
Object
  • Object
show all
Includes:
Mutex_m
Defined in:
lib/betatest.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)


421
422
423
# File 'lib/betatest.rb', line 421

def passed?
  true
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.



409
410
# File 'lib/betatest.rb', line 409

def record result
end

#reportObject

Outputs the summary of the run.



415
416
# File 'lib/betatest.rb', line 415

def report
end

#startObject

Starts reporting on the run.



402
403
# File 'lib/betatest.rb', line 402

def start
end