commonMain.int.KlipContext.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of klip-core Show documentation
Show all versions of klip-core Show documentation
Kotlin Multiplatform test snapshots (klips) manager
package dev.petuska.klip.core.int
/**
* A container to pass in compiler-plugin data
*
* @param path file path to retrieve and save klip for the given context
* @param key key to write the klip under in the file at [path]
* @param update whether the klip should be overridden instead of asserted
*/
public data class KlipContext(
val path: String,
val key: String,
val update: Boolean,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy