com.avito.report.model.Flakiness.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
/**
* https://avito-tech.github.io/avito-android/docs/test/flakytests/
*/
public sealed class Flakiness {
public class Flaky(public val reason: String) : Flakiness()
public object Stable : Flakiness()
}