final Boolean value = Boolean.TRUE;
Properties p = new Properties();
ManagedConnectionFactoryImpl mcf = new ManagedConnectionFactoryImpl(p);
mcf.setMonitorEJBServiceProperties(value);
assertTrue(p.containsValue(value.toString()));
assertEquals(value, mcf.getMonitorEJBServiceProperties());
}
@Test
public void testSetEJBServicePropertiesPollInterval() throws Exception {