@Test
public void executeStatefulRulesFromDecisionTableReload() throws RuleServiceException
{
Map<String,Object> globals = getGlobalsWithDest();
final String decisionTable = "RuleBaseHelper.xls";
final RuleInfo ruleInfo = new RuleInfoBuilder(decisionTable).reload(true).globals(globals).build();
final StatefulRuleInfoImpl statefulRuleInfo = new StatefulRuleInfoImpl(ruleInfo, false, false);
message = ruleService.executeStatefulRulesFromDecisionTable( statefulRuleInfo, message );
ArrayList<String> destinations = getDestinations( globals );
assertTrue( destinations.size() == 1 );
}