Class: Google::Apis::ToolresultsV1beta3::IosXcTest
- Inherits:
-
Object
- Object
- Google::Apis::ToolresultsV1beta3::IosXcTest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/toolresults_v1beta3/classes.rb,
generated/google/apis/toolresults_v1beta3/representations.rb,
generated/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.
1401 1402 1403 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1401 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bundle_id ⇒ String
Bundle ID of the app.
Corresponds to the JSON property bundleId
1394 1395 1396 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1394 def bundle_id @bundle_id end |
#xcode_version ⇒ String
Xcode version that the test was run with.
Corresponds to the JSON property xcodeVersion
1399 1400 1401 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1399 def xcode_version @xcode_version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1406 1407 1408 1409 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1406 def update!(**args) @bundle_id = args[:bundle_id] if args.key?(:bundle_id) @xcode_version = args[:xcode_version] if args.key?(:xcode_version) end |