TestCase

data class TestCase<T>(val data: T, val retry: Int)

Represents a test case with associated data and retry attempt information.

Report a problem

Constructors

Link copied to clipboard
constructor(data: T, retry: Int)

Properties

Link copied to clipboard
val data: T

The input data for the test case.

Link copied to clipboard
val retry: Int

The current retry attempt number for this test case. 0 means the initial test run before retries.