BuildTestOrContainerDuration

data class BuildTestOrContainerDuration(@Json(name = "total") val total: Long? = null, @Json(name = "own") val own: Long? = null, @Json(name = "serial") val serial: Long? = null)

Various types of test durations captured for a given test.

Parameters

total

The elapsed wall-clock time in milliseconds when the test or container is running. May be absent if the duration of the current test container or case is unknown. For example, the duration of forked suites is not captured in sbt.

own

The time in milliseconds spent in the setup or cleanup of test containers. Absent for test cases.

serial

The sum of the time spent in milliseconds if tests and containers were running sequentially. Absent for test cases.

Constructors

Link copied to clipboard
constructor(@Json(name = "total") total: Long? = null, @Json(name = "own") own: Long? = null, @Json(name = "serial") serial: Long? = null)

Properties

Link copied to clipboard
val own: Long?
Link copied to clipboard
val serial: Long?
Link copied to clipboard
val total: Long?