Class: Google::Apis::TestingV1::TestDetails
- Inherits:
-
Object
- Object
- Google::Apis::TestingV1::TestDetails
- 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
Additional details about the progress of the running test.
Instance Attribute Summary collapse
-
#error_message ⇒ String
Output only.
-
#progress_messages ⇒ Array<String>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TestDetails
constructor
A new instance of TestDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TestDetails
Returns a new instance of TestDetails.
2554 2555 2556 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2554 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_message ⇒ String
Output only. If the TestState is ERROR, then this string will contain human-
readable details about the error.
Corresponds to the JSON property errorMessage
2545 2546 2547 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2545 def @error_message end |
#progress_messages ⇒ Array<String>
Output only. Human-readable, detailed descriptions of the test's progress. For
example: "Provisioning a device", "Starting Test". During the course of
execution new data may be appended to the end of progress_messages.
Corresponds to the JSON property progressMessages
2552 2553 2554 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2552 def @progress_messages end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2559 2560 2561 2562 |
# File 'lib/google/apis/testing_v1/classes.rb', line 2559 def update!(**args) @error_message = args[:error_message] if args.key?(:error_message) @progress_messages = args[:progress_messages] if args.key?(:progress_messages) end |