2020-03-01 16:18:19 +01:00
|
|
|
package info
|
2020-02-28 22:51:12 +01:00
|
|
|
|
|
|
|
import org.junit.Rule
|
|
|
|
import org.mockito.Mockito
|
|
|
|
import org.mockito.junit.MockitoJUnit
|
|
|
|
import org.mockito.junit.MockitoRule
|
|
|
|
|
|
|
|
open class TestBase {
|
|
|
|
// Add a JUnit rule that will setup the @Mock annotated vars and log.
|
|
|
|
// Another possibility would be to add `MockitoAnnotations.initMocks(this) to the setup method.
|
|
|
|
@get:Rule
|
|
|
|
val mockitoRule: MockitoRule = MockitoJUnit.rule()
|
|
|
|
|
|
|
|
// Workaround for Kotlin nullability.
|
|
|
|
// https://medium.com/@elye.project/befriending-kotlin-and-mockito-1c2e7b0ef791
|
|
|
|
// https://stackoverflow.com/questions/30305217/is-it-possible-to-use-mockito-in-kotlin
|
|
|
|
fun <T> anyObject(): T {
|
|
|
|
Mockito.any<T>()
|
|
|
|
return uninitialized()
|
|
|
|
}
|
|
|
|
|
|
|
|
@Suppress("Unchecked_Cast")
|
|
|
|
fun <T> uninitialized(): T = null as T
|
|
|
|
}
|