Search in sources :

Example 1 with AccountStoreService

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;
}
Also used : AccountStoreService(com.forgerock.openbanking.common.services.store.account.AccountStoreService)

Aggregations

AccountStoreService (com.forgerock.openbanking.common.services.store.account.AccountStoreService)1