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

commonMain.io.mockk.proxy.common.transformation.TransformationRequest.kt Maven / Gradle / Ivy

The newest version!
package io.mockk.proxy.common.transformation

data class TransformationRequest(
    val classes: Set>,
    val type: TransformationType,
    val untransform: Boolean = false
) {
    fun reverse() = TransformationRequest(
        classes,
        type,
        !untransform
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy