Class: Trainer::LegacyXCResult::ActionAbstractTestSummary

Inherits:
AbstractObject
  • Object
show all
Defined in:
trainer/lib/trainer/legacy_xcresult.rb

Overview

  • ActionAbstractTestSummary

    • Kind: object

    • Properties: + name: String?

Instance Attribute Summary collapse

Attributes inherited from AbstractObject

#type

Instance Method Summary collapse

Methods inherited from AbstractObject

#fetch_value, #fetch_values

Constructor Details

#initialize(data) ⇒ ActionAbstractTestSummary

Returns a new instance of ActionAbstractTestSummary.



45
46
47
48
# File 'trainer/lib/trainer/legacy_xcresult.rb', line 45

def initialize(data)
  self.name = fetch_value(data, "name")
  super
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



44
45
46
# File 'trainer/lib/trainer/legacy_xcresult.rb', line 44

def name
  @name
end