class Google::Apis::TestingV1::TestDetails

Additional details about the progress of the running test.

Attributes

error_message[RW]

Output only. If the TestState is ERROR, then this string will contain human- readable details about the error. Corresponds to the JSON property `errorMessage` @return [String]

progress_messages[RW]

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` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/testing_v1/classes.rb, line 2033
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 2038
def update!(**args)
  @error_message = args[:error_message] if args.key?(:error_message)
  @progress_messages = args[:progress_messages] if args.key?(:progress_messages)
end