Test Outcome Distribution
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.
not Selected
The number of 'Not Selected' outcomes.
total
The total number of outcomes.