Class: XCResult::ActionTestPlanRunSummary
- Inherits:
-
ActionAbstractTestSummary
- Object
- AbstractObject
- ActionAbstractTestSummary
- XCResult::ActionTestPlanRunSummary
- Defined in:
- lib/xcresult/models.rb
Overview
-
ActionTestPlanRunSummary
-
Supertype: ActionAbstractTestSummary
-
Kind: object
-
Properties: + testableSummaries: [ActionTestableSummary]
-
Instance Attribute Summary collapse
-
#testable_summaries ⇒ Object
Returns the value of attribute testable_summaries.
Attributes inherited from ActionAbstractTestSummary
Attributes inherited from AbstractObject
Instance Method Summary collapse
-
#initialize(data) ⇒ ActionTestPlanRunSummary
constructor
A new instance of ActionTestPlanRunSummary.
Methods inherited from AbstractObject
Constructor Details
#initialize(data) ⇒ ActionTestPlanRunSummary
Returns a new instance of ActionTestPlanRunSummary.
59 60 61 62 63 64 |
# File 'lib/xcresult/models.rb', line 59 def initialize(data) self.testable_summaries = fetch_values(data, 'testableSummaries').map do |summary_data| ActionTestableSummary.new(summary_data) end super end |
Instance Attribute Details
#testable_summaries ⇒ Object
Returns the value of attribute testable_summaries.
58 59 60 |
# File 'lib/xcresult/models.rb', line 58 def testable_summaries @testable_summaries end |