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

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

Go to download

Collection of infrastructure libraries and gradle plugins of Avito Android project

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