Build Test Work Unit
data class BuildTestWorkUnit(@Json(name = "name" ) val name: String, @Json(name = "duration" ) val duration: BuildTestOrContainerDuration, @Json(name = "outcome" ) val outcome: TestWorkUnitOutcome, @Json(name = "tests" ) val tests: List<BuildTestOrContainer>)
A work unit that ran tests in a build.
Parameters
name
The name of the work unit.
duration
outcome
tests
A list of test containers or test cases that were executed in this work unit.
Constructors
Link copied to clipboard
constructor(@Json(name = "name" ) name: String, @Json(name = "duration" ) duration: BuildTestOrContainerDuration, @Json(name = "outcome" ) outcome: TestWorkUnitOutcome, @Json(name = "tests" ) tests: List<BuildTestOrContainer>)