tOne.loadNewVersion("002", retrieveRename(one, one + "002"));
// Should be dispatcher and executor for the reloaded type
assertEquals(2, typeRegistry.getChildClassLoader().getDefinedCount());
assertEquals(7, runUnguarded(tOne.getClazz(), "getValue").returnValue);
tTwo.loadNewVersion("002", tTwo.bytesInitial);
assertEquals(4, typeRegistry.getChildClassLoader().getDefinedCount());
result = runUnguarded(tOne.getClazz(), "getValue");
assertEquals(5, runUnguarded(tTwo.getClazz(), "getValue").returnValue);
Class<?> cOneExecutor = tOne.getLatestExecutorClass();