Test Cases Query
data class TestCasesQuery(@Json(name = "container" ) val container: String, @Json(name = "testOutcomes" ) val testOutcomes: List<TestOutcome>, @Json(name = "query" ) val query: String, @Json(name = "limit" ) val limit: Int? = 100, @Json(name = "include" ) val include: List<TestIncludeFields>? = null)
Parameters
container
Must be the fully qualified name of the test container to query. May not contain any wildcards.
test Outcomes
Allows restricting the search to tests that had at least one instance of the given outcome.
query
A query for filtering tests, written in the Develocity advanced search query language See: https://gradle.com/help/advanced-search
limit
The maximum number of test outcomes to query.
include
Controls which optional fields are included in the response.