com.avito.test.summary.compose.SlackSummaryComposer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-summary Show documentation
Show all versions of test-summary Show documentation
Collection of infrastructure libraries and gradle plugins of Avito Android project
package com.avito.test.summary.compose
import com.avito.android.Result
import com.avito.report.model.CrossDeviceSuite
import com.avito.report.model.ReportCoordinates
import com.avito.report.model.Team
internal interface SlackSummaryComposer {
fun composeMessage(
testData: CrossDeviceSuite,
team: Team,
mentionOnFailures: Boolean,
reportCoordinates: ReportCoordinates,
reportId: String,
buildUrl: String
): Result
}