Ejemplo n.º 1
0
 protected Object runTest(String methodName, CodeGenTest test, Object... args) {
   Method method = getMethod(methodName);
   InstalledCode code = assembleMethod(method, test);
   try {
     return code.executeVarargs(args);
   } catch (InvalidInstalledCodeException e) {
     throw new RuntimeException(e);
   }
 }