kryo.register(HashMap.class);
kryo.register(Locale.class, new LocaleSerializer());
kryo.register(Date.class);
kryo.register(FormattedDate.class, new FormattedDateSerializer());
kryo.register(Gender.class);
kryo.register(Color.class, new ColorSerializer());
kryo.register(ArrayList.class);
registerForKryo(kryo);
bytes = TestsHelper.serializeKryo(kryo, profile);
final UserProfile profile4 = (UserProfile) TestsHelper.unserializeKryo(kryo, bytes);
verifyProfile(profile4);