aboutsummaryrefslogtreecommitdiff
path: root/tests/src/test/kotlin/test/MockMaker.kt
blob: 54f3d91d3f3f92bf739d3aaca1d1c4a888ecc4a1 (plain)
1
2
3
4
5
6
7
8
9
10
package test

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)
}