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

com.avito.report.model.TestRuntimeData.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

/**
 * Data that can be defined only running the test
 */
public interface TestRuntimeData {

    public val incident: Incident?

    /**
     * Must be in seconds
     */
    public val startTime: Long

    /**
     * Must be in seconds
     */
    public val endTime: Long
    public val dataSetData: Map
    public val video: Video?
    public val preconditions: List
    public val steps: List
}

public val TestRuntimeData.duration: Long
    get() = endTime - startTime




© 2015 - 2025 Weber Informatics LLC | Privacy Policy