use of org.drools.workbench.services.verifier.api.client.index.select.AllListener in project drools-wb 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