log.trace("parse(Status IN ('new', 'cleared', 'acknowledged'))");
Operator result = (Operator) parser.parse("Status IN ('new', 'cleared', '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 testFalseINOperator() throws Exception
{
log.trace("parse(Status IN ('new', 'cleared', 'acknowledged'))");