Assert.assertNotNull(object);
Assert.assertTrue(object instanceof ContainUserComponent);
ContainUserComponent uc = (ContainUserComponent) object;
Assert.assertNotNull(uc.echo());
Assert.assertEquals(uc.echo(), userComponent.getName() + " " + userComponent.getSurname());
WebBeansContext.getInstance().getContextFactory().destroyRequestContext(null);
WebBeansContext.getInstance().getContextFactory().destroySessionContext(session);
}