Class: Trainer::XCResult::ActionResult
- Inherits:
-
AbstractObject
- Object
- AbstractObject
- Trainer::XCResult::ActionResult
- Defined in:
- trainer/lib/trainer/xcresult.rb
Overview
-
ActionResult
-
Kind: object
-
Properties: + resultName: String + status: String + metrics: ResultMetrics + issues: ResultIssueSummaries + coverage: CodeCoverageInfo + timelineRef: Reference? + logRef: Reference? + testsRef: Reference? + diagnosticsRef: Reference?
-
Instance Attribute Summary collapse
-
#diagnostics_ref ⇒ Object
Returns the value of attribute diagnostics_ref.
-
#issues ⇒ Object
Returns the value of attribute issues.
-
#log_ref ⇒ Object
Returns the value of attribute log_ref.
-
#result_name ⇒ Object
Returns the value of attribute result_name.
-
#status ⇒ Object
Returns the value of attribute status.
-
#tests_ref ⇒ Object
Returns the value of attribute tests_ref.
-
#timeline_ref ⇒ Object
Returns the value of attribute timeline_ref.
Attributes inherited from AbstractObject
Instance Method Summary collapse
-
#initialize(data) ⇒ ActionResult
constructor
A new instance of ActionResult.
Methods inherited from AbstractObject
Constructor Details
#initialize(data) ⇒ ActionResult
Returns a new instance of ActionResult.
268 269 270 271 272 273 274 275 276 277 278 |
# File 'trainer/lib/trainer/xcresult.rb', line 268 def initialize(data) self.result_name = fetch_value(data, "resultName") self.status = fetch_value(data, "status") self.issues = ResultIssueSummaries.new(data["issues"]) self.timeline_ref = Reference.new(data["timelineRef"]) if data["timelineRef"] self.log_ref = Reference.new(data["logRef"]) if data["logRef"] self.tests_ref = Reference.new(data["testsRef"]) if data["testsRef"] self.diagnostics_ref = Reference.new(data["diagnosticsRef"]) if data["diagnosticsRef"] super end |
Instance Attribute Details
#diagnostics_ref ⇒ Object
Returns the value of attribute diagnostics_ref.
267 268 269 |
# File 'trainer/lib/trainer/xcresult.rb', line 267 def diagnostics_ref @diagnostics_ref end |
#issues ⇒ Object
Returns the value of attribute issues.
263 264 265 |
# File 'trainer/lib/trainer/xcresult.rb', line 263 def issues @issues end |
#log_ref ⇒ Object
Returns the value of attribute log_ref.
265 266 267 |
# File 'trainer/lib/trainer/xcresult.rb', line 265 def log_ref @log_ref end |
#result_name ⇒ Object
Returns the value of attribute result_name.
261 262 263 |
# File 'trainer/lib/trainer/xcresult.rb', line 261 def result_name @result_name end |
#status ⇒ Object
Returns the value of attribute status.
262 263 264 |
# File 'trainer/lib/trainer/xcresult.rb', line 262 def status @status end |
#tests_ref ⇒ Object
Returns the value of attribute tests_ref.
266 267 268 |
# File 'trainer/lib/trainer/xcresult.rb', line 266 def tests_ref @tests_ref end |
#timeline_ref ⇒ Object
Returns the value of attribute timeline_ref.
264 265 266 |
# File 'trainer/lib/trainer/xcresult.rb', line 264 def timeline_ref @timeline_ref end |