com.malinskiy.marathon.execution.strategy.BatchingStrategy.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.strategy
import com.malinskiy.marathon.analytics.external.Analytics
import com.malinskiy.marathon.test.Test
import com.malinskiy.marathon.test.TestBatch
import java.util.*
interface BatchingStrategy {
fun process(queue: Queue, analytics: Analytics): TestBatch
}