com.malinskiy.marathon.execution.TestBatchResults.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Cross-platform test runner
package com.malinskiy.marathon.execution
import com.malinskiy.marathon.device.Device
data class TestBatchResults(
val device: Device,
val finished: Collection,
val failed: Collection,
val uncompleted: Collection
)