params.put("config.template", "template");
params.put("config.footer", "footer");
String result = this.executeSave("admin", params);
assertEquals(Action.SUCCESS, result);
NotifierConfig updatedNotifierConfig = this._notifierManager.getNotifierConfig();
assertTrue(updatedNotifierConfig.isActive());
assertEquals(10, updatedNotifierConfig.getHoursDelay());
String startDate = DateFormatter.format(updatedNotifierConfig.getStartScheduler());
assertEquals("19/11/2009 20:40", startDate);
assertEquals("CODE1", updatedNotifierConfig.getSenderCode());
//assertEquals("email", updatedNotifierConfig.getMailAttrName());
assertTrue(updatedNotifierConfig.isHtml());
assertEquals("subject", updatedNotifierConfig.getSubject());
assertEquals("header", updatedNotifierConfig.getHeader());
assertEquals("template", updatedNotifierConfig.getTemplate());
assertEquals("footer", updatedNotifierConfig.getFooter());
} catch(Throwable t) {
throw t;
} finally {
this._configManager.updateConfigItem(JpcontentworkflowSystemConstants.WORKFLOW_NOTIFIER_CONFIG_ITEM, config);
}