Class: Google::Apis::TestingV1::TestDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/testing_v1/classes.rb,
generated/google/apis/testing_v1/representations.rb,
generated/google/apis/testing_v1/representations.rb

Overview

Additional details about the progress of the running test.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TestDetails

Returns a new instance of TestDetails.



1944
1945
1946
# File 'generated/google/apis/testing_v1/classes.rb', line 1944

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#error_messageString

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

Returns:

  • (String)


1934
1935
1936
# File 'generated/google/apis/testing_v1/classes.rb', line 1934

def error_message
  @error_message
end

#progress_messagesArray<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

Returns:

  • (Array<String>)


1942
1943
1944
# File 'generated/google/apis/testing_v1/classes.rb', line 1942

def progress_messages
  @progress_messages
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1949
1950
1951
1952
# File 'generated/google/apis/testing_v1/classes.rb', line 1949

def update!(**args)
  @error_message = args[:error_message] if args.key?(:error_message)
  @progress_messages = args[:progress_messages] if args.key?(:progress_messages)
end