com.vinaysshenoy.quarantine.TestRepository.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarantine-junit4 Show documentation
Show all versions of quarantine-junit4 Show documentation
The client for integrating JUnit4 tests with Quarantine
The newest version!
package com.vinaysshenoy.quarantine
interface TestRepository {
fun config(): Config
fun add(descriptors: List)
fun record(clazz: String, method: String, isFlaky: Boolean)
fun results(): List
fun pushResultsToCloud()
}