// Store Descriptor to Context
ctx.addInstrumentationDescriptor(id);
// This will provide Instrumentors and Patches needed in this
// test/sample
MethodEventProducer mep = new MethodEventProducer(id, resolution);
// Add MethodEventListner ----
CallTrace et = new CallTrace();
mep.addMethodListener(et);
// The first argument is class name, the rest are String args.
String [] _args = new String[args.length - 1];
System.arraycopy(args, 1, _args, 0, _args.length);
Bootstrapper.launch(args[0], _args, ctx, CallTrace.class.getClassLoader());