use of org.drools.verifier.core.index.select.AllListener in project drools by kiegroup.
the class ConditionsListenerTest method setUp.
@Before
public void setUp() throws Exception {
configuration = new AnalyzerConfigurationMock();
conditions = new Conditions();
allListener = mock(AllListener.class);
conditions.where(Condition.value().any()).listen().all(allListener);
}
Aggregations