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
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
1744 1745 1746 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1744 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
1737 1738 1739 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1737 def @error_message end |
#stack_trace ⇒ Google::Apis::ToolresultsV1beta3::StackTrace
A stacktrace.
Corresponds to the JSON property stackTrace
1742 1743 1744 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1742 def stack_trace @stack_trace end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1749 1750 1751 1752 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1749 def update!(**args) @error_message = args[:error_message] if args.key?(:error_message) @stack_trace = args[:stack_trace] if args.key?(:stack_trace) end |