context.getELResolver().setValue(context, null, "indentifier_string", "bar"); // shadowed by variable indentifier_string
context.getELResolver().setValue(context, null, "property_method_1", getClass().getMethod("method_1"));
context.getELResolver().setValue(context, null, "property_method_1_expr", new TestMethodExpression(getClass().getMethod("method_1")));
// var_var_long_1 --> var_long_1, var_property_long_1 --> property_long_1
context.setVariable("var_var_long_1", new TreeValueExpression(new TreeStore(BUILDER, null), null, context.getVariableMapper(), null, "${var_long_1}", long.class));
context.setVariable("var_property_long_1", new TreeValueExpression(new TreeStore(BUILDER, null), null, context.getVariableMapper(), null, "${property_long_1}", long.class));
}