object.putEDBObjectEntry("wrappedInt", Integer.MAX_VALUE);
object.putEDBObjectEntry("wrappedLong", Long.MAX_VALUE);
object.putEDBObjectEntry("wrappedFloat", Float.MAX_VALUE);
object.putEDBObjectEntry("wrappedDouble", Double.MAX_VALUE);
WrappedPropertiesModel model = converter.convertEDBObjectToModel(WrappedPropertiesModel.class, object);
assertThat(model.getId(), is("test"));
assertThat(model.getBooleanByGet(), is(true));
assertThat(model.isBooleanByIs(), is(true));
assertThat(model.getWrappedChar(), is(Character.MAX_VALUE));
assertThat(model.getWrappedShort(), is(Short.MAX_VALUE));
assertThat(model.getWrappedInt(), is(Integer.MAX_VALUE));
assertThat(model.getWrappedLong(), is(Long.MAX_VALUE));
assertThat(model.getWrappedFloat(), is(Float.MAX_VALUE));
assertThat(model.getWrappedDouble(), is(Double.MAX_VALUE));
}