com.vinaysshenoy.quarantine.QuarantineApi.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
import retrofit2.Call
import retrofit2.http.Body
import retrofit2.http.POST
import retrofit2.http.Path
interface QuarantineApi {
@POST("{projectSlug}/reports")
fun sendTestRun(
@Path("projectSlug") projectSlug: String,
@Body payload: List
): Call
}