Snapshot

class Snapshot(val name: String?, val testName: TestName, val timestamp: Date, val tags: List<String> = listOf(), val file: String? = null)

Constructors

Link copied to clipboard
constructor(name: String?, testName: TestName, timestamp: Date, tags: List<String> = listOf(), file: String? = null)

Properties

Link copied to clipboard
val file: String? = null
Link copied to clipboard
val name: String?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun copy(name: String? = this.name, testName: TestName = this.testName, timestamp: Date = this.timestamp, tags: List<String> = this.tags, file: String? = this.file): Snapshot