}
@SuppressWarnings("deprecation")
public void testGetFieldValueConvertedWithCustomConverter() {
testBean.datum2 = 3;
conversionService.addConverter("customConverter", new StringToObject(Integer.class) {
protected Object toObject(String string, Class<?> targetClass) throws Exception {
return Integer.valueOf(string);
}
protected String toString(Object object) throws Exception {