assertThat(model, nullValue());
}
@Test
public void testMapSupportOfProxiedInterface_shouldWork() throws Exception {
TestModel model = service.getModel(TestModel.class, "mapoid");
assertThat(model.getMap().get("keyA").toString(), is("valueA"));
assertThat(model.getMap().get("keyB").toString(), is("valueB"));
assertThat(model.getMap().get("keyC").toString(), is("valueC"));
}