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

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



1039
1040
1041
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1039

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)


1027
1028
1029
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1027

def aborted_by_user
  @aborted_by_user
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)


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