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

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

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 - 2025 Weber Informatics LLC | Privacy Policy