Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ContinuousTestResult

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb

Overview

Represents a result from running a test case in an agent environment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ContinuousTestResult

Returns a new instance of GoogleCloudDialogflowCxV3beta1ContinuousTestResult.



4145
4146
4147
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4145

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

The resource name for the continuous test result. Format: projects//locations/ /agents//environments//continuousTestResults/. Corresponds to the JSON property name

Returns:

  • (String)


4127
4128
4129
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4127

def name
  @name
end

#resultString

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

Returns:

  • (String)


4133
4134
4135
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4133

def result
  @result
end

#run_timeString

Time when the continuous testing run starts. Corresponds to the JSON property runTime

Returns:

  • (String)


4138
4139
4140
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4138

def run_time
  @run_time
end

#test_case_resultsArray<String>

A list of individual test case results names in this continuous test run. Corresponds to the JSON property testCaseResults

Returns:

  • (Array<String>)


4143
4144
4145
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4143

def test_case_results
  @test_case_results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4150
4151
4152
4153
4154
4155
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 4150

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