String converted = converter.fromNative(nativeValue, null);
assertEquals("Hello", converted);
// We must cope with 32 bits on 32-bit
if (NativeLong.SIZE == 4) {
nativeValue = new Integer(helloID.intValue());
converted = converter.fromNative(nativeValue, null);
assertEquals("Hello", converted);
}
}