Does anyone know how can you get the context of the Test project in Android junit test case (extends AndroidTestCase).
Note: The test is NOT instru
If you want to get the context with Kotlin and Mockito, you can do it in the following way:
val context = mock(Context::class.java)
I Hope its help you