use of org.drools.workbench.services.verifier.api.client.AnalyzerConfigurationMock in project drools-wb by kiegroup.
the class UpdatableInspectorListTest method setUp.
@Before
public void setUp() throws Exception {
configuration = new AnalyzerConfigurationMock();
list = new UpdatableInspectorList<>(new InspectorFactory<HasUUID, Item>(configuration) {
@Override
public HasUUID make(final Item item) {
return new HasUUID() {
@Override
public UUIDKey getUuidKey() {
return mock(UUIDKey.class);
}
};
}
}, configuration);
}
use of org.drools.workbench.services.verifier.api.client.AnalyzerConfigurationMock in project drools-wb by kiegroup.
the class KeyTreeMapMultiValueKeyTest method setUp.
@Before
public void setUp() throws Exception {
configuration = new AnalyzerConfigurationMock();
map = new KeyTreeMap<>(NAME, AREA_CODE);
finland = new Country("Finland", 48100);
sweden = new Country("Sweden", 12345, 51000);
norway = new Country("Norway", 00000, 51000);
map.put(finland);
map.put(sweden);
map.put(norway);
}
use of org.drools.workbench.services.verifier.api.client.AnalyzerConfigurationMock in project drools-wb by kiegroup.
the class QueryableIndexTest method setUp.
@Before
public void setUp() throws Exception {
configuration = new AnalyzerConfigurationMock();
final Rules rules = new Rules();
rules.add(new Rule(0, configuration));
rules.add(new Rule(1, configuration));
rules.add(new Rule(2, configuration));
final Columns columns = new Columns();
firstColumn = new Column(0, configuration);
columns.add(firstColumn);
columns.add(new Column(1, configuration));
final ObjectTypes objectTypes = new ObjectTypes();
objectTypes.add(new ObjectType("Person", configuration));
objectTypes.add(new ObjectType("Address", configuration));
queryableIndex = new QueryableIndex(rules, columns, objectTypes);
}
Aggregations