Home
last modified time | relevance | path

Searched refs:getGoBackInvocations (Results 1 – 2 of 2) sorted by relevance

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowWebViewTest.java122 assertThat(shadowOf(webView).getGoBackInvocations()).isEqualTo(0); in shouldStoreTheNumberOfTimesGoBackWasCalled()
126 assertThat(shadowOf(webView).getGoBackInvocations()).isEqualTo(0); in shouldStoreTheNumberOfTimesGoBackWasCalled()
133 assertThat(shadowOf(webView).getGoBackInvocations()).isEqualTo(1); in shouldStoreTheNumberOfTimesGoBackWasCalled()
136 assertThat(shadowOf(webView).getGoBackInvocations()).isEqualTo(3); in shouldStoreTheNumberOfTimesGoBackWasCalled()
141 assertThat(shadowOf(webView).getGoBackInvocations()).isEqualTo(5); in shouldStoreTheNumberOfTimesGoBackWasCalled()
149 assertThat(shadowOf(webView).getGoBackInvocations()).isEqualTo(2); in shouldStoreTheNumberOfTimesGoBackWasCalled_SetCanGoBack()
153 assertThat(shadowOf(webView).getGoBackInvocations()).isEqualTo(2); in shouldStoreTheNumberOfTimesGoBackWasCalled_SetCanGoBack()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowWebView.java368 public int getGoBackInvocations() { in getGoBackInvocations() method in ShadowWebView