use of org.drools.workbench.models.guided.dtree.shared.model.values.impl.BooleanValue in project drools by kiegroup.
the class GuidedDecisionTreeDRLPersistenceMarshallingTest method testValue_Boolean.
@Test
public void testValue_Boolean() throws Exception {
final String expected = "rule \"test_0\"" + "when\n" + " Person( booleanField == true )\n" + "then\n" + "end";
final GuidedDecisionTree model = new GuidedDecisionTree();
model.setTreeName("test");
final TypeNode type = new TypeNodeImpl("Person");
final ConstraintNode c1 = new ConstraintNodeImpl("Person", "booleanField", "==", new BooleanValue(true));
model.setRoot(type);
type.addChild(c1);
final String drl = GuidedDecisionTreeDRLPersistence.getInstance().marshal(model);
assertEqualsIgnoreWhitespace(expected, drl);
}
use of org.drools.workbench.models.guided.dtree.shared.model.values.impl.BooleanValue in project drools by kiegroup.
the class GuidedDecisionTreeValuesTest method testBooleanValue.
@Test
public void testBooleanValue() {
final Boolean tv = Boolean.TRUE;
final BooleanValue v = new BooleanValue(tv);
assertEquals(tv, v.getValue());
v.setValue("true");
assertEquals(tv, v.getValue());
v.setValue("abc");
assertEquals(Boolean.FALSE, v.getValue());
}
use of org.drools.workbench.models.guided.dtree.shared.model.values.impl.BooleanValue in project drools by kiegroup.
the class GuidedDecisionTreeDRLPersistenceUnmarshallingTest method testValue_Boolean.
@Test
public void testValue_Boolean() throws Exception {
final String drl = "rule \"test_0\"\n" + "when \n" + " Person( booleanField == true )\n" + "then \n" + "end";
final GuidedDecisionTree expected = new GuidedDecisionTree();
expected.setTreeName("test");
final TypeNode type = new TypeNodeImpl("Person");
final ConstraintNode c1 = new ConstraintNodeImpl("Person", "booleanField", "==", new BooleanValue(true));
expected.setRoot(type);
type.addChild(c1);
addModelField("Person", "this", "Person", DataType.TYPE_THIS);
addModelField("Person", "booleanField", Boolean.class.getName(), DataType.TYPE_BOOLEAN);
final GuidedDecisionTree model = getAndTestUnmarshalledModel(drl, "test", 0);
assertEquals(expected.getTreeName(), model.getTreeName());
assertNotNull(model.getRoot());
assertEquals(type.getClassName(), model.getRoot().getClassName());
assertFalse(model.getRoot().isBound());
assertEquals(1, model.getRoot().getChildren().size());
assertNotNull(model.getRoot().getChildren().get(0));
assertTrue(model.getRoot().getChildren().get(0) instanceof ConstraintNode);
final ConstraintNode _c1 = (ConstraintNode) model.getRoot().getChildren().get(0);
assertEquals(c1.getClassName(), _c1.getClassName());
assertEquals(c1.getFieldName(), _c1.getFieldName());
assertEquals(c1.getOperator(), _c1.getOperator());
assertEquals(c1.getValue().getValue().toString(), _c1.getValue().getValue().toString());
}
Aggregations