class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ContinuousTestResult
Represents a result from running a test case in an agent environment.
Attributes
name[RW]
The resource name for the continuous test result. Format: `projects//locations/ /agents//environments//continuousTestResults/`. Corresponds to the JSON property `name` @return [String]
result[RW]
The result of this continuous test run, i.e. whether all the tests in this continuous test run pass or not. Corresponds to the JSON property `result` @return [String]
run_time[RW]
Time when the continuous testing run starts. Corresponds to the JSON property `runTime` @return [String]
test_case_results[RW]
A list of individual test case results names in this continuous test run. Corresponds to the JSON property `testCaseResults` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 121 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 126 def update!(**args) @name = args[:name] if args.key?(:name) @result = args[:result] if args.key?(:result) @run_time = args[:run_time] if args.key?(:run_time) @test_case_results = args[:test_case_results] if args.key?(:test_case_results) end