com.malinskiy.marathon.execution.strategy.FlakinessStrategy.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.MetricsProvider
import com.malinskiy.marathon.execution.TestShard
interface FlakinessStrategy {
fun process(
testShard: TestShard,
metricsProvider: MetricsProvider
): TestShard
}