* @should return a correct boolean value for logic test string
*/
protected boolean processLogicIncludeLogic(FormEntrySession session, String testStr) throws BadFormDesignException {
LogicService ls = Context.getLogicService();
LogicCriteria logicCriteria = null;
try {
logicCriteria = ls.parse(testStr);
} catch (Exception ex) {
throw new BadFormDesignException(ex.getMessage());
}