use of org.drools.workbench.services.verifier.api.client.index.Index in project drools-wb by kiegroup.
the class RuleInspectorCacheTest method setUp.
@Before
public void setUp() throws Exception {
final Index index = new IndexImpl();
final AnalyzerConfiguration configuration = new AnalyzerConfigurationMock();
cache = new RuleInspectorCache(index, configuration);
cache.addRule(new Rule(0, configuration));
cache.addRule(new Rule(1, configuration));
cache.addRule(new Rule(2, configuration));
cache.addRule(new Rule(3, configuration));
cache.addRule(new Rule(4, configuration));
cache.addRule(new Rule(5, configuration));
cache.addRule(new Rule(6, configuration));
}
Aggregations