Class: Google::Apis::ToolresultsV1beta3::TestIssue
- Inherits:
-
Object
- Object
- Google::Apis::ToolresultsV1beta3::TestIssue
- 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 more...
Overview
An abnormal event observed during the test execution.
Instance Attribute Summary collapse
-
#error_message ⇒ String
A brief human-readable message describing the abnormal event.
-
#stack_trace ⇒ Google::Apis::ToolresultsV1beta3::StackTrace
A stacktrace.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TestIssue
constructor
A new instance of TestIssue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TestIssue
Returns a new instance of TestIssue
1747 1748 1749 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1747 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_message ⇒ String
A brief human-readable message describing the abnormal event.
Required.
Corresponds to the JSON property errorMessage
1740 1741 1742 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1740 def @error_message end |
#stack_trace ⇒ Google::Apis::ToolresultsV1beta3::StackTrace
A stacktrace.
Corresponds to the JSON property stackTrace
1745 1746 1747 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1745 def stack_trace @stack_trace end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1752 1753 1754 1755 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1752 def update!(**args) @error_message = args[:error_message] if args.key?(:error_message) @stack_trace = args[:stack_trace] if args.key?(:stack_trace) end |