Skip to content

Annotations in espresso

Devrath edited this page May 17, 2021 · 10 revisions
Title
AndroidJUnit4

Annotation - AndroidJUnit4

@RunWith(AndroidJUnit4::class)
class MainActivityTest {
    @Test
    fun greet() {
    }
}

AndroidJUnit4::class --> This specifies the tests written in this class is an android test

Clone this wiki locally