Class: Google::Apis::ToolresultsV1beta3::InconclusiveDetail

Inherits:
Object
  • Object
show all
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

Details for an outcome with an INCONCLUSIVE outcome summary.

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) ⇒ InconclusiveDetail

Returns a new instance of InconclusiveDetail.



1236
1237
1238
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1236

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

Instance Attribute Details

#aborted_by_userBoolean Also known as: aborted_by_user?

If the end user aborted the test execution before a pass or fail could be determined. For example, the user pressed ctrl-c which sent a kill signal to the test runner while the test was running. Corresponds to the JSON property abortedByUser

Returns:

  • (Boolean)


1217
1218
1219
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1217

def aborted_by_user
  @aborted_by_user
end

#has_error_logsBoolean Also known as: has_error_logs?

If results are being provided to the user in certain cases of infrastructure failures Corresponds to the JSON property hasErrorLogs

Returns:

  • (Boolean)


1224
1225
1226
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1224

def has_error_logs
  @has_error_logs
end

#infrastructure_failureBoolean Also known as: infrastructure_failure?

If the test runner could not determine success or failure because the test depends on a component other than the system under test which failed. For example, a mobile test requires provisioning a device where the test executes, and that provisioning can fail. Corresponds to the JSON property infrastructureFailure

Returns:

  • (Boolean)


1233
1234
1235
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1233

def infrastructure_failure
  @infrastructure_failure
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1241
1242
1243
1244
1245
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1241

def update!(**args)
  @aborted_by_user = args[:aborted_by_user] if args.key?(:aborted_by_user)
  @has_error_logs = args[:has_error_logs] if args.key?(:has_error_logs)
  @infrastructure_failure = args[:infrastructure_failure] if args.key?(:infrastructure_failure)
end