@Test
public void testInteractionWithEnumValuesWithProxiedInterface_shouldWork() throws Exception {
TestModel model = service.getModel(TestModel.class, "testoid");
ENUM temp = model.getEnumeration();
model.setEnumeration(ENUM.B);
assertThat(temp, is(ENUM.A));
assertThat(model.getEnumeration(), is(ENUM.B));
}