The following sample deletes a user account record with a given unique key.
//for this sample it is assumed that a user record exists with a unique key String equal to uniqueKey
protected UserAccountRepository userAccountRepository;
public void test_deleteUserAccount() throws Exception {
userAccountRepository.deleteUserAccount(uniqueKey);
}