update.addChange(exampleElement(true, 1), new Constant("abc")); //$NON-NLS-1$
helpTest(update, getSymbolMap());
}
public void testVisitUpdate2() {
Update update = new Update();
update.setGroup(exampleGroup(true, 0));
update.addChange(exampleElement(true, 0), new Constant("abc")); //$NON-NLS-1$
update.addChange(exampleElement(true, 1), new Constant("abc")); //$NON-NLS-1$
update.setCriteria(new CompareCriteria(exampleElement(true, 2), CompareCriteria.LT, new Constant("xyz"))); //$NON-NLS-1$
helpTest(update, getSymbolMap());
}