Class: Google::Apis::TestingV1::TestDetails
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::TestingV1::TestDetails
 
- 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
- 
  
    
      #error_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    If the TestState is ERROR, then this string will contain human-readable details about the error. 
- 
  
    
      #progress_messages  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Human-readable, detailed descriptions of the test's progress. 
- 
  
    
      #video_recording_disabled  ⇒ Boolean 
    
    
      (also: #video_recording_disabled?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Indicates that video will not be recorded for this execution either because the user chose to disable it or the device does not support it. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TestDetails 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of TestDetails. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TestDetails
Returns a new instance of TestDetails
| 1442 1443 1444 | # File 'generated/google/apis/testing_v1/classes.rb', line 1442 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#error_message ⇒ String
If the TestState is ERROR, then this string will contain human-readable
details about the error.
Corresponds to the JSON property errorMessage
| 1422 1423 1424 | # File 'generated/google/apis/testing_v1/classes.rb', line 1422 def @error_message end | 
#progress_messages ⇒ Array<String>
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
| 1431 1432 1433 | # File 'generated/google/apis/testing_v1/classes.rb', line 1431 def @progress_messages end | 
#video_recording_disabled ⇒ Boolean Also known as: video_recording_disabled?
Indicates that video will not be recorded for this execution either because
the user chose to disable it or the device does not support it.
See AndroidModel.video_recording_not_supported
Corresponds to the JSON property videoRecordingDisabled
| 1439 1440 1441 | # File 'generated/google/apis/testing_v1/classes.rb', line 1439 def video_recording_disabled @video_recording_disabled end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1447 1448 1449 1450 1451 | # File 'generated/google/apis/testing_v1/classes.rb', line 1447 def update!(**args) @error_message = args[:error_message] if args.key?(:error_message) @progress_messages = args[:progress_messages] if args.key?(:progress_messages) @video_recording_disabled = args[:video_recording_disabled] if args.key?(:video_recording_disabled) end |