Class: Google::Apis::ToolresultsV1beta3::AndroidTest
- Inherits:
-
Object
- Object
- Google::Apis::ToolresultsV1beta3::AndroidTest
- 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
An Android mobile test specification.
Instance Attribute Summary collapse
-
#android_app_info ⇒ Google::Apis::ToolresultsV1beta3::AndroidAppInfo
Android app information.
-
#android_instrumentation_test ⇒ Google::Apis::ToolresultsV1beta3::AndroidInstrumentationTest
A test of an Android application that can control an Android component independently of its normal lifecycle.
-
#android_robo_test ⇒ Google::Apis::ToolresultsV1beta3::AndroidRoboTest
A test of an android application that explores the application on a virtual or physical Android device, finding culprits and crashes as it goes.
-
#test_timeout ⇒ Google::Apis::ToolresultsV1beta3::Duration
A Duration represents a signed, fixed-length span of time represented as a count of seconds and fractions of seconds at nanosecond resolution.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AndroidTest
constructor
A new instance of AndroidTest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AndroidTest
Returns a new instance of AndroidTest
207 208 209 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 207 def initialize(**args) update!(**args) end |
Instance Attribute Details
#android_app_info ⇒ Google::Apis::ToolresultsV1beta3::AndroidAppInfo
Android app information.
Corresponds to the JSON property androidAppInfo
158 159 160 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 158 def android_app_info @android_app_info end |
#android_instrumentation_test ⇒ Google::Apis::ToolresultsV1beta3::AndroidInstrumentationTest
A test of an Android application that can control an Android component
independently of its normal lifecycle.
See for more information on types of Android tests.
Corresponds to the JSON property androidInstrumentationTest
165 166 167 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 165 def android_instrumentation_test @android_instrumentation_test end |
#android_robo_test ⇒ Google::Apis::ToolresultsV1beta3::AndroidRoboTest
A test of an android application that explores the application on a virtual or
physical Android device, finding culprits and crashes as it goes.
Corresponds to the JSON property androidRoboTest
171 172 173 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 171 def android_robo_test @android_robo_test end |
#test_timeout ⇒ Google::Apis::ToolresultsV1beta3::Duration
A Duration represents a signed, fixed-length span of time represented as a count of seconds and fractions of seconds at nanosecond resolution. It is independent of any calendar and concepts like "day" or "month". It is related to Timestamp in that the difference between two Timestamp values is a Duration and it can be added or subtracted from a Timestamp. Range is approximately +- 10,000 years.
Examples
Example 1: Compute Duration from two Timestamps in pseudo code.
Timestamp start = ...; Timestamp end = ...; Duration duration = ...;
duration.seconds = end.seconds - start.seconds; duration.nanos = end.nanos -
start.nanos;
if (duration.seconds 0) duration.seconds += 1; duration.nanos -= 1000000000;
else if (durations.seconds > 0 && duration.nanos < 0) duration.seconds -=
1; duration.nanos += 1000000000;
Example 2: Compute Timestamp from Timestamp + Duration in pseudo code.
Timestamp start = ...; Duration duration = ...; Timestamp end = ...;
end.seconds = start.seconds + duration.seconds; end.nanos = start.nanos +
duration.nanos;
if (end.nanos = 1000000000) end.seconds += 1; end.nanos -= 1000000000;
Example 3: Compute Duration from datetime.timedelta in Python.
td = datetime.timedelta(days=3, minutes=10) duration = Duration() duration.
FromTimedelta(td)
JSON Mapping
In JSON format, the Duration type is encoded as a string rather than an object,
where the string ends in the suffix "s" (indicating seconds) and is preceded
by the number of seconds, with nanoseconds expressed as fractional seconds.
For example, 3 seconds with 0 nanoseconds should be encoded in JSON format as "
3s", while 3 seconds and 1 nanosecond should be expressed in JSON format as "3.
000000001s", and 3 seconds and 1 microsecond should be expressed in JSON
format as "3.000001s".
Corresponds to the JSON property testTimeout
205 206 207 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 205 def test_timeout @test_timeout end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
212 213 214 215 216 217 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 212 def update!(**args) @android_app_info = args[:android_app_info] if args.key?(:android_app_info) @android_instrumentation_test = args[:android_instrumentation_test] if args.key?(:android_instrumentation_test) @android_robo_test = args[:android_robo_test] if args.key?(:android_robo_test) @test_timeout = args[:test_timeout] if args.key?(:test_timeout) end |