final TargetLoader loader = new TargetLoader(target, bytes);
final Object instance = loader.getTargetClass().newInstance();
((Runnable) instance).run();
final ExecutionDataStore store = new ExecutionDataStore();
runtime.collect(store, false);
runtime.shutdown();
return store;
}
private void analyze(ClassReader reader, ExecutionDataStore store) {
final CoverageBuilder builder = new CoverageBuilder(store);