class Google::Apis::TestingV1::IosTestLoop

A test of an iOS application that implements one or more game loop scenarios. This test type accepts an archived application (.ipa file) and a list of integer scenarios that will be executed on the app sequentially.

Attributes

app_bundle_id[RW]

Output only. The bundle id for the application under test. Corresponds to the JSON property `appBundleId` @return [String]

app_ipa[RW]

A reference to a file, used for user inputs. Corresponds to the JSON property `appIpa` @return [Google::Apis::TestingV1::FileReference]

scenarios[RW]

The list of scenarios that should be run during the test. Defaults to the single scenario 0 if unspecified. Corresponds to the JSON property `scenarios` @return [Array<Fixnum>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 1400
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/testing_v1/classes.rb, line 1405
def update!(**args)
  @app_bundle_id = args[:app_bundle_id] if args.key?(:app_bundle_id)
  @app_ipa = args[:app_ipa] if args.key?(:app_ipa)
  @scenarios = args[:scenarios] if args.key?(:scenarios)
end