public void testMathCeilWithDoubleCast() {
String str = "Math.ceil( (double) x / 3 )";
ParserConfiguration pconf = new ParserConfiguration();
pconf.addImport("Math", Math.class);
ParserContext pctx = new ParserContext(pconf);
pctx.setStrongTyping(true);
pctx.addInput("x", Integer.class);
ExecutableStatement stmt = (ExecutableStatement) MVEL.compileExpression(str, pctx);