Class: Rproof::AbstractReporter

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

Direct Known Subclasses

CompositeReporter, LiveReporter, XMLReporter

Instance Method Summary collapse

Instance Method Details

#report_assertion(assertion) ⇒ Object



18
19
# File 'lib/rproof/abstract_reporter.rb', line 18

def report_assertion(assertion)
end

#report_campaign_beginObject



9
10
# File 'lib/rproof/abstract_reporter.rb', line 9

def report_campaign_begin
end

#report_campaign_end(test_results, start_time, end_time) ⇒ Object

test_results is either a Test_Result or a Test_Result Array



34
35
# File 'lib/rproof/abstract_reporter.rb', line 34

def report_campaign_end(test_results, start_time, end_time)
end

#report_exception(exception) ⇒ Object



24
25
# File 'lib/rproof/abstract_reporter.rb', line 24

def report_exception(exception)
end

#report_suite_begin(id, name, description) ⇒ Object



12
13
# File 'lib/rproof/abstract_reporter.rb', line 12

def report_suite_begin(id, name, description)
end

#report_suite_end(id, test_results) ⇒ Object



30
31
# File 'lib/rproof/abstract_reporter.rb', line 30

def report_suite_end(id, test_results)
end

#report_test_begin(id, name, description) ⇒ Object



15
16
# File 'lib/rproof/abstract_reporter.rb', line 15

def report_test_begin(id, name, description)
end

#report_test_end(id, test_result) ⇒ Object



27
28
# File 'lib/rproof/abstract_reporter.rb', line 27

def report_test_end(id, test_result)
end

#report_warning(warning) ⇒ Object



21
22
# File 'lib/rproof/abstract_reporter.rb', line 21

def report_warning(warning)
end