@Test
public void testSynchronizeDeleteApiKey_OneCharacter_OtherKey() {
Key<User> userKey = new Key<User>(User.class, 1);
Key<ApiKey> apiKeyKey = new Key<ApiKey>(ApiKey.class, 1);
List<ApiKey> otherApiKeys = new ArrayList<ApiKey>();
ApiKey otherApiKey = new ApiKey();
otherApiKey.setId(2L);
List<ApiKeyCharacterInfo> apiKeyCharacterInfos = new ArrayList<ApiKeyCharacterInfo>();
ApiKeyCharacterInfo apiKeyCharacterInfo = new ApiKeyCharacterInfo();
apiKeyCharacterInfo.setCharacterID(1L);
apiKeyCharacterInfos.add(apiKeyCharacterInfo);
otherApiKey.setCharacterInfos(apiKeyCharacterInfos);
otherApiKeys.add(otherApiKey);
ArrayList<Character> characters = new ArrayList<Character>();
Character character = new Character();
character.setApiKey(apiKeyKey);