characters.add(character1);
characters.add(character2);
when(apiKeyDao.getAll(userKey)).thenReturn(apiKeys);
when(characterDao.getAll(userKey)).thenReturn(characters);
doThrow(new ApiKeyShouldBeRemovedException("api key not valid")).when(eveApiDataService).populateApiKeyData(any(ApiKey.class));
doThrow(new EveApiException("api error")).when(eveApiDataService).populateCharacterData(any(Character.class));
eveUpdateService.updateApiKeysForUser(userKey);
verify(eveApiDataService, times(1)).populateApiKeyData(any(ApiKey.class));
/* verify(apiKeyDao, times(1)).putWithoutChecks(any(ApiKey.class));