本文整理匯總了Java中org.mockito.Mockito.clearInvocations方法的典型用法代碼示例。如果您正苦於以下問題:Java Mockito.clearInvocations方法的具體用法?Java Mockito.clearInvocations怎麽用?Java Mockito.clearInvocations使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.mockito.Mockito
的用法示例。
在下文中一共展示了Mockito.clearInvocations方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testGetAzureClient
import org.mockito.Mockito; //導入方法依賴的package包/類
@Test
public void testGetAzureClient() throws Exception {
final AzureAuthHelper helper = new AzureAuthHelper(mojo);
final AzureAuthHelper helperSpy = spy(helper);
// authObj is null
doReturn(null).when(helperSpy).getAuthObj();
assertNull(helperSpy.getAzureClient());
// authObj is not null
doReturn(authenticated).when(helperSpy).getAuthObj();
// <subscriptionId> is not null
when(mojo.getSubscriptionId()).thenReturn("SubscriptionId");
helperSpy.getAzureClient();
verify(authenticated, times(1)).withSubscription(any(String.class));
verify(authenticated, never()).withDefaultSubscription();
Mockito.clearInvocations(authenticated);
// <subscriptionId> is null
when(mojo.getSubscriptionId()).thenReturn(null);
helperSpy.getAzureClient();
verify(authenticated, never()).withSubscription(any(String.class));
verify(authenticated, times(1)).withDefaultSubscription();
}