for(int i=0;i<count;i++){
Configuration conf = new Configuration();
ExpressionParser exprParser = new ExpressionParser( test, beans, conf );
Expression testExpr = exprParser.parse();
try {
result = (Boolean) testExpr.evaluate();
} catch (Exception e) {
e.printStackTrace();
}
}
clock.stop();