@Test
public void testHintedOnlyConverter() throws Exception {
String hintStr = "where's my hint?";
CustomConverterWrapper source = newInstance(CustomConverterWrapper.class);
HintedOnly hint = newInstance(HintedOnly.class);
hint.setStr(hintStr);
source.addHint(hint);
CustomConverterWrapperPrime dest = mapper.map(source, CustomConverterWrapperPrime.class);
String destHintStr = (String) dest.getNeedsHint().iterator().next();
assertNotNull(destHintStr);