Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3TestCase
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3TestCase
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Overview
Represents a test case.
Instance Attribute Summary collapse
-
#creation_time ⇒ String
Output only.
-
#display_name ⇒ String
Required.
-
#last_test_result ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3TestCaseResult
Represents a result from running a test case in an agent environment.
-
#name ⇒ String
The unique identifier of the test case.
-
#notes ⇒ String
Additional freeform notes about the test case.
-
#tags ⇒ Array<String>
Tags are short descriptions that users may apply to test cases for organizational and filtering purposes.
-
#test_case_conversation_turns ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ConversationTurn>
The conversation turns uttered when the test case was created, in chronological order.
-
#test_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3TestConfig
Represents configurations for a test case.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TestCase
constructor
A new instance of GoogleCloudDialogflowCxV3TestCase.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3TestCase
Returns a new instance of GoogleCloudDialogflowCxV3TestCase.
2925 2926 2927 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2925 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creation_time ⇒ String
Output only. When the test was created.
Corresponds to the JSON property creationTime
2881 2882 2883 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2881 def creation_time @creation_time end |
#display_name ⇒ String
Required. The human-readable name of the test case, unique within the agent.
Limit of 200 characters.
Corresponds to the JSON property displayName
2887 2888 2889 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2887 def display_name @display_name end |
#last_test_result ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3TestCaseResult
Represents a result from running a test case in an agent environment.
Corresponds to the JSON property lastTestResult
2892 2893 2894 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2892 def last_test_result @last_test_result end |
#name ⇒ String
The unique identifier of the test case. TestCases.CreateTestCase will populate
the name automatically. Otherwise use format: projects//locations//agents//
testCases/.
Corresponds to the JSON property name
2899 2900 2901 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2899 def name @name end |
#notes ⇒ String
Additional freeform notes about the test case. Limit of 400 characters.
Corresponds to the JSON property notes
2904 2905 2906 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2904 def notes @notes end |
#tags ⇒ Array<String>
Tags are short descriptions that users may apply to test cases for
organizational and filtering purposes. Each tag should start with "#" and has
a limit of 30 characters.
Corresponds to the JSON property tags
2911 2912 2913 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2911 def @tags end |
#test_case_conversation_turns ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ConversationTurn>
The conversation turns uttered when the test case was created, in
chronological order. These include the canonical set of agent utterances that
should occur when the agent is working properly.
Corresponds to the JSON property testCaseConversationTurns
2918 2919 2920 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2918 def test_case_conversation_turns @test_case_conversation_turns end |
#test_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3TestConfig
Represents configurations for a test case.
Corresponds to the JSON property testConfig
2923 2924 2925 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2923 def test_config @test_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2930 def update!(**args) @creation_time = args[:creation_time] if args.key?(:creation_time) @display_name = args[:display_name] if args.key?(:display_name) @last_test_result = args[:last_test_result] if args.key?(:last_test_result) @name = args[:name] if args.key?(:name) @notes = args[:notes] if args.key?(:notes) @tags = args[:tags] if args.key?(:tags) @test_case_conversation_turns = args[:test_case_conversation_turns] if args.key?(:test_case_conversation_turns) @test_config = args[:test_config] if args.key?(:test_config) end |