Class: Google::Cloud::Dialogflow::CX::V3::ContinuousTestResult
- Inherits:
-
Object
- Object
- Google::Cloud::Dialogflow::CX::V3::ContinuousTestResult
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/dialogflow/cx/v3/environment.rb
Overview
Represents a result from running a test case in an agent environment.
Defined Under Namespace
Modules: AggregatedTestResult
Instance Attribute Summary collapse
-
#name ⇒ ::String
The resource name for the continuous test result.
-
#result ⇒ ::Google::Cloud::Dialogflow::CX::V3::ContinuousTestResult::AggregatedTestResult
The result of this continuous test run, i.e.
-
#run_time ⇒ ::Google::Protobuf::Timestamp
Time when the continuous testing run starts.
-
#test_case_results ⇒ ::Array<::String>
A list of individual test case results names in this continuous test run.
Instance Attribute Details
#name ⇒ ::String
Returns The resource name for the continuous test result. Format:
projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/continuousTestResults/<ContinuousTestResultID>
.
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/environment.rb', line 251 class ContinuousTestResult include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The overall result for a continuous test run in an agent environment. module AggregatedTestResult # Not specified. Should never be used. AGGREGATED_TEST_RESULT_UNSPECIFIED = 0 # All the tests passed. PASSED = 1 # At least one test did not pass. FAILED = 2 end end |
#result ⇒ ::Google::Cloud::Dialogflow::CX::V3::ContinuousTestResult::AggregatedTestResult
Returns The result of this continuous test run, i.e. whether all the tests in this continuous test run pass or not.
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/environment.rb', line 251 class ContinuousTestResult include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The overall result for a continuous test run in an agent environment. module AggregatedTestResult # Not specified. Should never be used. AGGREGATED_TEST_RESULT_UNSPECIFIED = 0 # All the tests passed. PASSED = 1 # At least one test did not pass. FAILED = 2 end end |
#run_time ⇒ ::Google::Protobuf::Timestamp
Returns Time when the continuous testing run starts.
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/environment.rb', line 251 class ContinuousTestResult include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The overall result for a continuous test run in an agent environment. module AggregatedTestResult # Not specified. Should never be used. AGGREGATED_TEST_RESULT_UNSPECIFIED = 0 # All the tests passed. PASSED = 1 # At least one test did not pass. FAILED = 2 end end |
#test_case_results ⇒ ::Array<::String>
Returns A list of individual test case results names in this continuous test run.
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/environment.rb', line 251 class ContinuousTestResult include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The overall result for a continuous test run in an agent environment. module AggregatedTestResult # Not specified. Should never be used. AGGREGATED_TEST_RESULT_UNSPECIFIED = 0 # All the tests passed. PASSED = 1 # At least one test did not pass. FAILED = 2 end end |