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
1836 1837 1838 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1836 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
1829 1830 1831 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1829 def @error_message end |
#stack_trace ⇒ Google::Apis::ToolresultsV1beta3::StackTrace
A stacktrace.
Corresponds to the JSON property stackTrace
1834 1835 1836 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1834 def stack_trace @stack_trace end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1841 1842 1843 1844 |
# File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1841 def update!(**args) @error_message = args[:error_message] if args.key?(:error_message) @stack_trace = args[:stack_trace] if args.key?(:stack_trace) end |