The response for executing a functional test.
JSON representation |
---|
{ "executionId" : string , "outputParameters" : { object } , "assertionResults" : [ { object ( |
Fields | |
---|---|
executionId
|
The id of the execution corresponding to this run of integration. |
outputParameters
|
OUTPUT parameters in format of Map<Key,Value>. 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. |
assertionResults[]
|
Results of each assertions ran during execution of test case. |
testExecutionState
|
State of the test case execution |
AssertionResult
The result of an assertion.
JSON representation |
---|
{ "assertion" : { object ( |
Fields | |
---|---|
assertion
|
Assertion that was run. |
taskNumber
|
Task number of task where the assertion was run. |
taskName
|
Task name of task where the assertion was run. |
status
|
Status of assertion to signify if the assertion succeeded or failed |
AssertionStatus
Possible values for AssertionStatus
Enums | |
---|---|
ASSERTION_STATUS_UNSPECIFIED
|
Unspecified assertion status |
SUCCEEDED
|
Assertion succeeded |
FAILED
|
Assertion failed |
State
Status of the test case
Enums | |
---|---|
STATE_UNSPECIFIED
|
Unspecified state |
PASSED
|
Test case execution passed |
FAILED
|
Test case execution failed |