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