Map<String, Object> model;
Map<String, Function> functions;
@Before
public void setup() {
target = new FunctionEngine(ExpressionEngine.getInstance());
script = "foo(hoge)";
model = new HashMap<String, Object>();
functions = new HashMap<String, Function>();
functions.put("bar", new Function(null, "return 0;", "bar"));
}