com.nhaarman.mockito_kotlin.createinstance.MockMaker.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockito-kotlin Show documentation
Show all versions of mockito-kotlin Show documentation
Using Mockito with Kotlin.
package com.nhaarman.mockito_kotlin.createinstance
import org.mockito.internal.configuration.plugins.Plugins
import org.mockito.internal.creation.bytebuddy.InlineByteBuddyMockMaker
internal var mockMakerInlineEnabled: Boolean? = null
internal fun mockMakerInlineEnabled(): Boolean {
return mockMakerInlineEnabled ?:
Plugins.getMockMaker() is InlineByteBuddyMockMaker
}