TestContainersQuery

data class TestContainersQuery(    @Json(name = "container") val container: String = "*",     @Json(name = "testOutcomes") val testOutcomes: List<TestOutcome>,     @Json(name = "query") val query: String,     @Json(name = "include") val include: List<TestIncludeFields>? = null)

Parameters

container

Allows restricting the search to parts of the test container hierarchy. You can use wildcards to match a specific subpackage.

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

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 = "include") include: List<TestIncludeFields>? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard