System.out.println("testPassivation");
Stateless stateless = (Stateless)getInitialContext().lookup("Stateless");
stateless.testInjection();
ServiceRemote service = (ServiceRemote) getInitialContext().lookup("ServiceBean/remote");
service.testInjection();
ClusteredStateful stateful = (ClusteredStateful)getInitialContext().lookup("ClusteredStateful");
assertNotNull(stateful);
stateful.setState("state");
assertEquals("state", stateful.getState());