BaselineSyncClient client = wrapper.getClient();
ExecutionContext ctx = wrapper.getCtx();
if("testSimpleGet".equals(methodToExecute)){
try{
SimpleResponse response = client.testSimpleGet(ctx, "foo");
this.actualResponse = new JSONObject(response.toString());
} catch(SimpleException e){
this.actualResponse = null;
this.exceptionResponse = e;
} catch(JSONException j){