public void testManagedDeployment() throws Exception
{
// Validate the ejb
InitialContext ic = new InitialContext();
BeanHome home = (BeanHome) ic.lookup("DeployUnitTestCase-testEjb2xDeployment");
BeanRemote bean = home.create();
String entry1 = (String) bean.getEnvEntry("entry1");
assertEquals("entry1Value", entry1);
// TODO, validate the war
}
};
testDeployment(name, "ear", tester);