mapper = getMapper("inheritanceHints.xml");
}
@Test
public void test_simple() {
Source source = new Source();
HashSet<Base> set = new HashSet<Base>();
set.add(new BaseA());
set.add(new BaseB());
source.setSet(set);
Target result = mapper.map(source, Target.class);
assertNotNull(result);
assertNotNull(result.getSet());