com.avito.report.model.TestStaticData.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
import com.avito.android.test.annotations.TestCaseBehavior
import com.avito.android.test.annotations.TestCasePriority
import com.avito.test.model.DeviceName
import com.avito.test.model.TestName
/**
* Test data that can be parsed even without actual test run
*/
public interface TestStaticData {
public val name: TestName
public val device: DeviceName
public val description: String?
public val dataSetNumber: Int?
public val flakiness: Flakiness
public val testCaseId: Int?
public val externalId: String?
public val featureIds: List
public val tagIds: List
public val priority: TestCasePriority?
public val behavior: TestCaseBehavior?
public val kind: Kind
}