class Google::Apis::TestingV1::Environment
The environment in which the test is run.
Attributes
android_device[RW]
A single Android device. Corresponds to the JSON property `androidDevice` @return [Google::Apis::TestingV1::AndroidDevice]
ios_device[RW]
A single iOS device. Corresponds to the JSON property `iosDevice` @return [Google::Apis::TestingV1::IosDevice]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 970 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 975 def update!(**args) @android_device = args[:android_device] if args.key?(:android_device) @ios_device = args[:ios_device] if args.key?(:ios_device) end