com.malinskiy.marathon.execution.Attachment.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Cross-platform test runner
package com.malinskiy.marathon.execution
import java.io.File
data class Attachment(val file: File, val type: AttachmentType)
enum class AttachmentType {
SCREENSHOT,
VIDEO,
LOG;
fun toMimeType() = when (this) {
SCREENSHOT -> "image/gif"
VIDEO -> "video/mp4"
LOG -> "text/txt"
}
}