359360361362363364365366367368
// Private private void setup(String jndiName) throws Exception { Facade facade = getFacadeHome().create(); facade.createCmpEntity(jndiName, id, "str1", new Integer(1), new Double(1.1), "str2", new Integer(2), new Double(2.2)); }
367368369370371372373374
"str2", new Integer(2), new Double(2.2)); } private void tearDown(String jndiName) throws Exception { Facade facade = getFacadeHome().create(); facade.safeRemove(jndiName, id); }