Check If Service Is Started With Espresso By Click On View

88 Views Asked by At

I want to test that when i click on btnRestore , CloudRestoreService should be start. how to test this ?

@Test
fun testBtnRestore_expectedIntentCloudRestoreService() {
    Intents.init()
    onView(withId(R.id.btnRestore))
        .check(matches(isDisplayed()))
        .check(matches(isEnabled()))
        .perform(click())
    intended(hasComponent(CloudRestoreService::class.java.name))
    Intents.release()
}
0

There are 0 best solutions below