Class: Google::Apis::TestingV1::IosXcTest
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::IosXcTest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/testing_v1/classes.rb,
lib/google/apis/testing_v1/representations.rb,
lib/google/apis/testing_v1/representations.rb
Overview
A test of an iOS application that uses the XCTest framework. Xcode supports the option to "build for testing", which generates an .xctestrun file that contains a test specification (arguments, test methods, etc). This test type accepts a zip file containing the .xctestrun file and the corresponding contents of the Build/Products directory that contains all the binaries needed to run the tests.
Instance Attribute Summary collapse
-
#app_bundle_id ⇒ String
Output only.
-
#test_special_entitlements ⇒ Boolean
(also: #test_special_entitlements?)
The option to test special app entitlements.
-
#tests_zip ⇒ Google::Apis::TestingV1::FileReference
A reference to a file, used for user inputs.
-
#xcode_version ⇒ String
The Xcode version that should be used for the test.
-
#xctestrun ⇒ Google::Apis::TestingV1::FileReference
A reference to a file, used for user inputs.
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.
1548 1549 1550 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1548 def initialize(**args) update!(**args) end |
Instance Attribute Details
#app_bundle_id ⇒ String
Output only. The bundle id for the application under test.
Corresponds to the JSON property appBundleId
1521 1522 1523 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1521 def app_bundle_id @app_bundle_id end |
#test_special_entitlements ⇒ Boolean Also known as: test_special_entitlements?
The option to test special app entitlements. Setting this would re-sign the
app having special entitlements with an explicit application-identifier.
Currently supports testing aps-environment entitlement.
Corresponds to the JSON property testSpecialEntitlements
1528 1529 1530 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1528 def test_special_entitlements @test_special_entitlements end |
#tests_zip ⇒ Google::Apis::TestingV1::FileReference
A reference to a file, used for user inputs.
Corresponds to the JSON property testsZip
1534 1535 1536 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1534 def tests_zip @tests_zip end |
#xcode_version ⇒ String
The Xcode version that should be used for the test. Use the
TestEnvironmentDiscoveryService to get supported options. Defaults to the
latest Xcode version Firebase Test Lab supports.
Corresponds to the JSON property xcodeVersion
1541 1542 1543 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1541 def xcode_version @xcode_version end |
#xctestrun ⇒ Google::Apis::TestingV1::FileReference
A reference to a file, used for user inputs.
Corresponds to the JSON property xctestrun
1546 1547 1548 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1546 def xctestrun @xctestrun end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1553 1554 1555 1556 1557 1558 1559 |
# File 'lib/google/apis/testing_v1/classes.rb', line 1553 def update!(**args) @app_bundle_id = args[:app_bundle_id] if args.key?(:app_bundle_id) @test_special_entitlements = args[:test_special_entitlements] if args.key?(:test_special_entitlements) @tests_zip = args[:tests_zip] if args.key?(:tests_zip) @xcode_version = args[:xcode_version] if args.key?(:xcode_version) @xctestrun = args[:xctestrun] if args.key?(:xctestrun) end |