class Betatest::AbstractReporter

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

Public Instance Methods

passed?() click to toggle source

Did this run pass?

# File lib/betatest.rb, line 421
def passed?
  true
end
record(result) click to toggle source

Record a result and output the Runnable#result_code. Stores the result of the run if the run did not pass.

# File lib/betatest.rb, line 409
def record result
end
report() click to toggle source

Outputs the summary of the run.

# File lib/betatest.rb, line 415
def report
end
start() click to toggle source

Starts reporting on the run.

# File lib/betatest.rb, line 402
def start
end