Skip to main content

continuous_test_results

Creates, updates, deletes, gets or lists a continuous_test_results resource.

Overview

Namecontinuous_test_results
TypeResource
Idgoogle.dialogflow.continuous_test_results

Fields

NameDatatypeDescription
namestringThe resource name for the continuous test result. Format: projects//locations//agents//environments//continuousTestResults/.
resultstringThe result of this continuous test run, i.e. whether all the tests in this continuous test run pass or not.
runTimestringTime when the continuous testing run starts.
testCaseResultsarrayA list of individual test case results names in this continuous test run.

Methods

NameAccessible byRequired ParamsDescription
projects_locations_agents_environments_continuous_test_results_listSELECTagentsId, environmentsId, locationsId, projectsIdFetches a list of continuous test results for a given environment.

SELECT examples

Fetches a list of continuous test results for a given environment.

SELECT
name,
result,
runTime,
testCaseResults
FROM google.dialogflow.continuous_test_results
WHERE agentsId = '{{ agentsId }}'
AND environmentsId = '{{ environmentsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';