Class: RightScaleSelfService::Test::Report
- Inherits:
-
Object
- Object
- RightScaleSelfService::Test::Report
- Defined in:
- lib/rightscale_selfservice/test/report.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#options ⇒ Object
Returns the value of attribute options.
-
#suite ⇒ Object
Returns the value of attribute suite.
Instance Method Summary collapse
- #errors ⇒ Object
- #failures ⇒ Object
-
#initialize(suite, options = {}) ⇒ Report
constructor
A new instance of Report.
- #progress ⇒ Object
Constructor Details
#initialize(suite, options = {}) ⇒ Report
Returns a new instance of Report.
26 27 28 29 |
# File 'lib/rightscale_selfservice/test/report.rb', line 26 def initialize(suite, ={}) self.suite = suite self. = end |
Instance Attribute Details
#options ⇒ Object
Returns the value of attribute options.
24 25 26 |
# File 'lib/rightscale_selfservice/test/report.rb', line 24 def @options end |
#suite ⇒ Object
Returns the value of attribute suite.
23 24 25 |
# File 'lib/rightscale_selfservice/test/report.rb', line 23 def suite @suite end |
Instance Method Details
#errors ⇒ Object
35 36 37 |
# File 'lib/rightscale_selfservice/test/report.rb', line 35 def errors raise NotImplementedError.new() end |
#failures ⇒ Object
39 40 41 |
# File 'lib/rightscale_selfservice/test/report.rb', line 39 def failures raise NotImplementedError.new() end |
#progress ⇒ Object
31 32 33 |
# File 'lib/rightscale_selfservice/test/report.rb', line 31 def progress raise NotImplementedError.new() end |