assertDeepEquals( deserialized, stringBuilder );
}
@Test( enabled = true )
public void testMapWithIntConstructorOnly() throws Exception {
final HashMapWithIntConstructorOnly map = new HashMapWithIntConstructorOnly( 5 );
final HashMapWithIntConstructorOnly deserialized =
deserialize( serialize( map ), HashMapWithIntConstructorOnly.class );
assertDeepEquals( deserialized, map );
}