@Test
public void testContainerInvocation2() throws Throwable
{
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.skapaHobby2(name, description);
assertEquals(description + " avlyssnas", result.getBeskrivning());
}