Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/shard/
DShardHelperTest.java316 IKeyStoreClient mockClient = Mockito.mock(IKeyStoreClient.class); in testClone_withKeystore() local
331 return mockClient; in testClone_withKeystore()
359 doReturn(true).when(mockClient).isAvailable(); in testClone_withKeystore()
360 doReturn(SuccessTestCase.class.getName()).when(mockClient).fetchKey("test"); in testClone_withKeystore()
382 IKeyStoreClient mockClient = Mockito.mock(IKeyStoreClient.class); in testClone_withKeystore_loadingFails() local
397 return mockClient; in testClone_withKeystore_loadingFails()
419 doReturn(true).when(mockClient).isAvailable(); in testClone_withKeystore_loadingFails()
420 doReturn(SuccessTestCase.class.getName()).when(mockClient).fetchKey("test"); in testClone_withKeystore_loadingFails()
421 doThrow(new RuntimeException()).when(mockClient).fetchKey("test"); in testClone_withKeystore_loadingFails()