Home
last modified time | relevance | path

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

/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
DAccessibilityTextActionTest.java365 Runnable mockRunnableForPrepare = mock(Runnable.class); in testTextLocations_withRequestPreparer_shouldHoldOffUntilReady() local
381 mockRunnableForPrepare.run(); in testTextLocations_withRequestPreparer_shouldHoldOffUntilReady()
385 verify(mockRunnableForPrepare, times(0)).run(); in testTextLocations_withRequestPreparer_shouldHoldOffUntilReady()
395 verify(mockRunnableForPrepare, timeout(DEFAULT_TIMEOUT_MS)).run(); in testTextLocations_withRequestPreparer_shouldHoldOffUntilReady()
420 Runnable mockRunnableForPrepare = mock(Runnable.class); in testTextLocations_withUnresponsiveRequestPreparer_shouldTimeout() local
429 mockRunnableForPrepare.run(); in testTextLocations_withUnresponsiveRequestPreparer_shouldTimeout()
433 verify(mockRunnableForPrepare, times(0)).run(); in testTextLocations_withUnresponsiveRequestPreparer_shouldTimeout()
447 verify(mockRunnableForPrepare, timeout(DEFAULT_TIMEOUT_MS)).run(); in testTextLocations_withUnresponsiveRequestPreparer_shouldTimeout()