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

Constructor Details

#initialize(**args) ⇒ InconclusiveDetail

Returns a new instance of InconclusiveDetail.



1200
1201
1202
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1200

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)


1181
1182
1183
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1181

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)


1188
1189
1190
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1188

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)


1197
1198
1199
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1197

def infrastructure_failure
  @infrastructure_failure
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1205
1206
1207
1208
1209
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1205

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