| assertEquals( 2,
agenda.agendaSize() );
// Deactivate the RuleFlowGroup, the activations should be removed from
// the agenda but still in the RuleFlowGroup
agenda.deactivateRuleFlowGroup( "rule-flow-group-0" );
assertEquals( 2,
ruleFlowGroup0.size() );
assertEquals( 0,
agenda.agendaSize() );
|