com.avito.report.model.TestAttempt.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of report-api Show documentation
Show all versions of report-api Show documentation
Collection of infrastructure libraries and gradle plugins of Avito Android project
package com.avito.report.model
public data class TestAttempt(val testResult: AndroidTest, val executionNumber: Int) {
public companion object {
private const val NO_EXECUTION = -1
public fun createWithoutExecution(testResult: AndroidTest): TestAttempt {
return TestAttempt(testResult, NO_EXECUTION)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy