kryo.register(GaeUserServiceProfile.class);
}
@Override
protected void verifyProfile(final UserProfile userProfile) {
final GaeUserServiceProfile profile = (GaeUserServiceProfile) userProfile;
logger.debug("userProfile : {}", profile);
final String id = "test@example.com";
assertEquals(id, profile.getId());
assertEquals(GaeUserServiceProfile.class.getSimpleName() + UserProfile.SEPARATOR
+ id, profile.getTypedId());
assertTrue(ProfileHelper.isTypedIdOf(profile.getTypedId(), GaeUserServiceProfile.class));
assertCommonProfile(userProfile, id, null, null, "test", null,
Gender.UNSPECIFIED, null, null, null, null);
assertEquals(2, profile.getAttributes().size());
}