Results

data class Results(val plan: Plan = Plan.ALL_TESTS, val currentTest: Test? = null, val numIterationsTotal: Int = 0, val numIterationsCompleted: Int = 0, val numIterationsSuccessful: Int = 0, val failedIterations: List<Int> = listOf(), val transactionTime: Timing = Timing(), val scanningTime: Timing = Timing())

Constructors

Link copied to clipboard
constructor(plan: Plan = Plan.ALL_TESTS, currentTest: Test? = null, numIterationsTotal: Int = 0, numIterationsCompleted: Int = 0, numIterationsSuccessful: Int = 0, failedIterations: List<Int> = listOf(), transactionTime: Timing = Timing(), scanningTime: Timing = Timing())

Properties

Link copied to clipboard
val currentTest: Test? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val plan: Plan
Link copied to clipboard
Link copied to clipboard