Class: Google::Apis::ToolresultsV1beta3::IosXcTest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IosXcTest

Returns a new instance of IosXcTest.



1428
1429
1430
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1428

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bundle_idString

Bundle ID of the app. Corresponds to the JSON property bundleId

Returns:

  • (String)


1421
1422
1423
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1421

def bundle_id
  @bundle_id
end

#xcode_versionString

Xcode version that the test was run with. Corresponds to the JSON property xcodeVersion

Returns:

  • (String)


1426
1427
1428
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1426

def xcode_version
  @xcode_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1433
1434
1435
1436
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1433

def update!(**args)
  @bundle_id = args[:bundle_id] if args.key?(:bundle_id)
  @xcode_version = args[:xcode_version] if args.key?(:xcode_version)
end