Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecuteTestCaseResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecuteTestCaseResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb
Overview
The response for executing a functional test.
Instance Attribute Summary collapse
-
#assertion_results ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAssertionResult>
Results of each assertions ran during execution of test case.
-
#execution_id ⇒ String
The id of the execution corresponding to this run of integration.
-
#output_parameters ⇒ Hash<String,Object>
OUTPUT parameters in format of Map.
-
#test_execution_state ⇒ String
State of the test case execution Corresponds to the JSON property
testExecutionState
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaExecuteTestCaseResponse
constructor
A new instance of GoogleCloudIntegrationsV1alphaExecuteTestCaseResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaExecuteTestCaseResponse
Returns a new instance of GoogleCloudIntegrationsV1alphaExecuteTestCaseResponse.
7757 7758 7759 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7757 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assertion_results ⇒ Array<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaAssertionResult>
Results of each assertions ran during execution of test case.
Corresponds to the JSON property assertionResults
7738 7739 7740 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7738 def assertion_results @assertion_results end |
#execution_id ⇒ String
The id of the execution corresponding to this run of integration.
Corresponds to the JSON property executionId
7743 7744 7745 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7743 def execution_id @execution_id end |
#output_parameters ⇒ Hash<String,Object>
OUTPUT parameters in format of Map. Where Key is the name of the parameter.
Note: Name of the system generated parameters are wrapped by backtick() to
distinguish them from the user defined parameters.
Corresponds to the JSON property
outputParameters`
7750 7751 7752 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7750 def output_parameters @output_parameters end |
#test_execution_state ⇒ String
State of the test case execution
Corresponds to the JSON property testExecutionState
7755 7756 7757 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7755 def test_execution_state @test_execution_state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7762 7763 7764 7765 7766 7767 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 7762 def update!(**args) @assertion_results = args[:assertion_results] if args.key?(:assertion_results) @execution_id = args[:execution_id] if args.key?(:execution_id) @output_parameters = args[:output_parameters] if args.key?(:output_parameters) @test_execution_state = args[:test_execution_state] if args.key?(:test_execution_state) end |