ProxyContainer<HobbyFasadBean> container = new ProxyContainer<HobbyFasadBean>("AdvisedBeanTestCase", "InterceptorContainer", HobbyFasadBean.class);
Class<?> interfaces[] = { HobbyFasad.class };
HobbyFasad bean = container.constructProxy(interfaces);
String name = "testContainerInvocation";
String description = "Invocation via a proxy container";
Hobby result = bean.skapaHobby1(name, description);
assertEquals(description + " avlyssnas", result.getBeskrivning());
}
@Test
public void testContainerInvocation2() throws Throwable