Home
last modified time | relevance | path

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

/tools/tradefederation/core/javatests/com/android/tradefed/util/
DRunUtilTest.java197 CommandInterrupter interrupter = Mockito.mock(CommandInterrupter.class); in testRunTimed_interrupted() local
198 RunUtil runUtil = new RunUtil(interrupter); in testRunTimed_interrupted()
201 doNothing().doThrow(RunInterruptedException.class).when(interrupter).checkInterrupted(); in testRunTimed_interrupted()
629 CommandInterrupter interrupter = Mockito.mock(CommandInterrupter.class); in testSetInterruptibleInFuture() local
630 RunUtil runUtil = new RunUtil(interrupter); in testSetInterruptibleInFuture()
636 Mockito.verify(interrupter) in testSetInterruptibleInFuture()
639 Mockito.verifyNoMoreInteractions(interrupter); in testSetInterruptibleInFuture()
/tools/tradefederation/core/common_util/com/android/tradefed/util/
DRunUtil.java85 RunUtil(@Nonnull CommandInterrupter interrupter) { in RunUtil() argument
86 mInterrupter = interrupter; in RunUtil()