dev.mokkery.plugin.core.Kotlin.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mokkery-plugin Show documentation
Show all versions of mokkery-plugin Show documentation
Mokkery is a mocking library for Kotlin Multiplatform, easy to use, boilerplate-free and compiler plugin driven.
The newest version!
package dev.mokkery.plugin.core
import dev.mokkery.plugin.ir.fqName
import dev.mokkery.plugin.ir.functionId
object Kotlin {
val kotlin_collections by fqName
val kotlin by fqName
object Name {
val listOf by kotlin_collections.functionId
val mapOf by kotlin_collections.functionId
}
object Function {
val to by kotlin.function
}
object Class {
val Pair by kotlin.klass
}
}