/**
* Run with forced weaving thru custom classloader
* -Daspectwerkz.definition.file=src\test\test-xmldef.xml -Daspectwerkz.transform.verbose=yes -Daspectwerkz.transform.dump=test..*
*/
public void runThruWeavingClassLoader() throws Exception {
ClassLoader cl = new WeavingClassLoader(new URL[]{(new File("_temp")).toURL()}, ClassLoader.getSystemClassLoader());
createClassFiles("_temp", "atest");
long ms = System.currentTimeMillis();
callClassesOneByOne(cl, "atest");
System.out.println("completed in: " + (System.currentTimeMillis() - ms));
//continueCalls();// uncomment me if needed