log.trace("parse((Status = 'new') OR (Status = 'cleared') OR (Status = 'acknowledged'))");
Operator result = (Operator) parser.parse("(Status = 'new') OR (Status = 'cleared') OR (Status= 'acknowledged')", identifierMap);
Identifier a = (Identifier) identifierMap.get("Status");
a.setValue("new");
log.trace("result -> "+result);
Boolean bool = (Boolean) result.apply();
assertTrue("is true", bool.booleanValue());
}
public void testFalseOROperator() throws Exception
{
log.trace("parse((Status = 'new') OR (Status = 'cleared') OR (Status = 'acknowledged'))");