TestCasesQuery

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.

testOutcomes

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.

Constructors

Link copied to clipboard
constructor(@Json(name = "container") container: String, @Json(name = "testOutcomes") testOutcomes: List<TestOutcome>, @Json(name = "query") query: String, @Json(name = "limit") limit: Int? = 100, @Json(name = "include") include: List<TestIncludeFields>? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val limit: Int? = 100
Link copied to clipboard
Link copied to clipboard