}
public void testValueMethodInvocation() {
delayTestFinish(DELAY_TEST_FINISH);
SimpleValueContext ctx = req.simpleValueContext();
SimpleValueProxy p = ctx.create(SimpleValueProxy.class);
p.setString("Hello World!");
ctx.getString().using(p).fire(new Receiver<String>() {
@Override
public void onSuccess(String response) {
assertEquals("Hello World!", response);