mirror of
https://github.com/ouchadam/small-talk.git
synced 2025-02-23 07:27:43 +01:00
8 lines
125 B
Kotlin
8 lines
125 B
Kotlin
package fake
|
|
|
|
import android.content.Context
|
|
import io.mockk.mockk
|
|
|
|
class FakeContext {
|
|
val instance = mockk<Context>()
|
|
} |