@Test
public void testDeepInterfaceWithHint() throws Exception {
Mapper mapper = getMapper(new String[] { "fieldAttributeMapping.xml" });
InsideTestObject ito = newInstance(InsideTestObject.class);
House house = newInstance(House.class);
MetalThingyIF thingy = newInstance(Car.class);
thingy.setName("name");
house.setThingy(thingy);
ito.setHouse(house);
InsideTestObjectPrime itop = mapper.map(ito, InsideTestObjectPrime.class);
assertEquals("name", itop.getDeepInterfaceString());