Class: Google::Apis::ToolresultsV1beta3::IosXcTest
- Inherits:
-
Object
- Object
- Google::Apis::ToolresultsV1beta3::IosXcTest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/toolresults_v1beta3/classes.rb,
lib/google/apis/toolresults_v1beta3/representations.rb,
lib/google/apis/toolresults_v1beta3/representations.rb
Overview
A test of an iOS application that uses the XCTest framework.
Instance Attribute Summary collapse
-
#bundle_id ⇒ String
Bundle ID of the app.
-
#xcode_version ⇒ String
Xcode version that the test was run with.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IosXcTest
constructor
A new instance of IosXcTest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IosXcTest
Returns a new instance of IosXcTest.
1415 1416 1417 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1415 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bundle_id ⇒ String
Bundle ID of the app.
Corresponds to the JSON property bundleId
1408 1409 1410 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1408 def bundle_id @bundle_id end |
#xcode_version ⇒ String
Xcode version that the test was run with.
Corresponds to the JSON property xcodeVersion
1413 1414 1415 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1413 def xcode_version @xcode_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1420 1421 1422 1423 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1420 def update!(**args) @bundle_id = args[:bundle_id] if args.key?(:bundle_id) @xcode_version = args[:xcode_version] if args.key?(:xcode_version) end |