TestOutcomeDistribution

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)

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.