BuildTestsSummaryDuration

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

Parameters

total

The sum of the elapsed wall-clock time in milliseconds of work units with tests.

serial

The sum of the time in milliseconds spent if tests and containers were running sequentially. May be absent if the duration of test containers of cases is unknown (for example, the duration of forked suites is not captured in sbt).

Constructors

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

Properties

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