binLoader = new TestClassloaderWithRewriting();
String a = "simple.Front";
String b = "simple.Back";
TypeRegistry r = getTypeRegistry(a + "," + b);
ReloadableType rtypea = r.addType(a, loadBytesForClass(a));
ReloadableType rtypeb = r.addType(b, loadBytesForClass(b));
Object instance = rtypea.getClazz().newInstance();
result = runOnInstance(rtypea.getClazz(), instance, "run");
assertEquals(35, result.returnValue);
try {
result = runOnInstance(rtypea.getClazz(), instance, "run2");