ManagedDeploymentTester tester = new ManagedDeploymentTester()
{
public void testManagedDeployment() throws Exception
{
InitialContext ic = new InitialContext();
BeanRemote3x bean = (BeanRemote3x) ic.lookup("BeanImpl3x/remote-org.jboss.test.profileservice.ejb3x.BeanRemote3x");
String entry1 = (String) bean.getEnvEntry("entry1");
assertEquals("entry1Value", entry1);
}
};
testDeployment(name, "ejb3x", tester);
}