use of org.drools.workbench.services.verifier.api.client.index.ObjectField in project drools-wb by kiegroup.
the class ConditionsInspectorTest method setUp.
@Before
public void setUp() throws Exception {
configurationMock = new AnalyzerConfigurationMock();
field = new Field(new ObjectField("Person", "Integer", "age", configurationMock), "Person", "Integer", "age", configurationMock);
}
use of org.drools.workbench.services.verifier.api.client.index.ObjectField in project drools-wb by kiegroup.
the class FieldInspectorRelationsTest method setUp.
@Before
public void setUp() throws Exception {
configurationMock = new AnalyzerConfigurationMock();
ObjectField objectField = mock(ObjectField.class);
a = new FieldInspector(new Field(objectField, "org.Person", "String", "name", configurationMock), mock(RuleInspectorUpdater.class), mock(AnalyzerConfiguration.class));
b = new FieldInspector(new Field(objectField, "org.Person", "String", "name", configurationMock), mock(RuleInspectorUpdater.class), mock(AnalyzerConfiguration.class));
}
Aggregations