SimpleContext context;
@Override
protected void setUp() throws Exception {
context = new SimpleContext();
// functions ns:f0(), ns:f1(int), ns:f2(int)
context.setFunction("ns", "f0", getClass().getMethod("foo"));
context.setFunction("ns", "f1", getClass().getMethod("bar", new Class[]{int.class}));
context.setFunction("ns", "f2", getClass().getMethod("foobar", new Class[]{int.class, int.class}));