Class: Google::Apis::ToolresultsV1beta3::InconclusiveDetail
- Inherits:
-
Object
- Object
- Google::Apis::ToolresultsV1beta3::InconclusiveDetail
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/toolresults_v1beta3/classes.rb,
lib/google/apis/toolresults_v1beta3/representations.rb,
lib/google/apis/toolresults_v1beta3/representations.rb
Overview
Details for an outcome with an INCONCLUSIVE outcome summary.
Instance Attribute Summary collapse
-
#aborted_by_user ⇒ Boolean
(also: #aborted_by_user?)
If the end user aborted the test execution before a pass or fail could be determined.
-
#has_error_logs ⇒ Boolean
(also: #has_error_logs?)
If results are being provided to the user in certain cases of infrastructure failures Corresponds to the JSON property
hasErrorLogs
. -
#infrastructure_failure ⇒ Boolean
(also: #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.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InconclusiveDetail
constructor
A new instance of InconclusiveDetail.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InconclusiveDetail
Returns a new instance of InconclusiveDetail.
1227 1228 1229 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1227 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aborted_by_user ⇒ Boolean 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
1208 1209 1210 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1208 def aborted_by_user @aborted_by_user end |
#has_error_logs ⇒ Boolean 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
1215 1216 1217 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1215 def has_error_logs @has_error_logs end |
#infrastructure_failure ⇒ Boolean 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
1224 1225 1226 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1224 def infrastructure_failure @infrastructure_failure end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1232 1233 1234 1235 1236 |
# File 'lib/google/apis/toolresults_v1beta3/classes.rb', line 1232 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 |