TestOutcomeDistribution

data class TestOutcomeDistribution(@Json(name = "passed") val passed: Int, @Json(name = "failed") val failed: Int, @Json(name = "skipped") val skipped: Int, @Json(name = "flaky") val flaky: Int, @Json(name = "notSelected") val notSelected: Int, @Json(name = "total") val total: Int)

A distribution of outcomes.

Parameters

passed

The number of 'Passed' outcomes.

failed

The number of 'Failed' outcomes.

skipped

The number of 'Skipped' outcomes.

flaky

The number of 'Flaky' outcomes.

notSelected

The number of 'Not Selected' outcomes.

total

The total number of outcomes.

Constructors

Link copied to clipboard
constructor(@Json(name = "passed") passed: Int, @Json(name = "failed") failed: Int, @Json(name = "skipped") skipped: Int, @Json(name = "flaky") flaky: Int, @Json(name = "notSelected") notSelected: Int, @Json(name = "total") total: Int)

Properties

Link copied to clipboard
val failed: Int
Link copied to clipboard
val flaky: Int
Link copied to clipboard
Link copied to clipboard
val passed: Int
Link copied to clipboard
Link copied to clipboard
val total: Int