use of com.forgerock.openbanking.common.services.store.account.AccountStoreService in project openbanking-aspsp by OpenBankingToolkit.
the class AbstractDecisionDelegateTest method getAccountStoreService.
protected static AccountStoreService getAccountStoreService() {
AccountStoreService accountStoreService = mock(AccountStoreService.class);
given(accountStoreService.get(eq(USER_ID))).willReturn(Collections.singletonList(USER_ACCOUNT));
return accountStoreService;
}
Aggregations