Class: Google::Apis::ToolresultsV1beta3::InconclusiveDetail
- Inherits:
-
Object
- Object
- Google::Apis::ToolresultsV1beta3::InconclusiveDetail
- 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
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.
-
#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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ InconclusiveDetail
Returns a new instance of InconclusiveDetail
1039 1040 1041 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1039 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
1027 1028 1029 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1027 def aborted_by_user @aborted_by_user 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
1036 1037 1038 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1036 def infrastructure_failure @infrastructure_failure end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1044 1045 1046 1047 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1044 def update!(**args) @aborted_by_user = args[:aborted_by_user] if args.key?(:aborted_by_user) @infrastructure_failure = args[:infrastructure_failure] if args.key?(:infrastructure_failure) end |