All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avito.report.model.TestStaticData.kt Maven / Gradle / Ivy

Go to download

Collection of infrastructure libraries and gradle plugins of Avito Android project

There is a newer version: 2023.22
Show newest version
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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy