Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/test_add_user_details_on_sharedp…
Browse files Browse the repository at this point in the history
…refs' into anc-issue-fix-906
  • Loading branch information
junaidwarsivd committed Oct 14, 2022
2 parents 9dc6eb6 + 98031b7 commit bedfc97
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -372,5 +372,11 @@ public void testIsUserInPioneerGroupShouldReturnFalseForOthers() throws Exceptio
assertFalse(userService.isUserInPioneerGroup("john"));
}


@Test
public void saveProviderBaseEntityIdOnSharedPref() {
String providerBaseEntityId = "00ab-88dc-ea11-8471-ad90";
String providerName = "provider";
userService.saveUserId(providerName, providerBaseEntityId);
verify(userService).saveUserId(providerName, providerBaseEntityId);
}
}

0 comments on commit bedfc97

Please sign in to comment.