use of com.nexblocks.authguard.jwt.oauth.AuthorizationCodeVerifier in project AuthGuard by AuthGuard.
the class AuthorizationCodeToOidcTest method setup.
@BeforeEach
void setup() {
authorizationCodeVerifier = Mockito.mock(AuthorizationCodeVerifier.class);
accountsService = Mockito.mock(AccountsService.class);
openIdConnectTokenProvider = Mockito.mock(OpenIdConnectTokenProvider.class);
serviceMapper = new ServiceMapperImpl();
authorizationCodeToOidc = new AuthorizationCodeToOidc(new AccountsServiceAdapter(accountsService), authorizationCodeVerifier, openIdConnectTokenProvider, serviceMapper);
}
Aggregations