@Test
public void testConvertDifferentMapsWithSameType(){
Hashtable<String,String> table = new Hashtable<String,String>();
table.put("testkey", "testvalue");
Object result = converter.convertToResultType(table, new TypeInformation(MapUtil.map("test","test")));
assertEquals(MapUtil.map("testkey","testvalue"), result);
}