throw new IllegalStateException("Could not load class " + testClassName + " from deployed archive: "
+ archive.toString());
}
final Class<?> testRunnersClass;
try {
testRunnersClass = isolatedArchiveCL.loadClass(CLASS_NAME_ARQ_TEST_RUNNERS);
} catch (final ClassNotFoundException cnfe) {
throw new IllegalStateException("Could not load class " + CLASS_NAME_ARQ_TEST_RUNNERS
+ " from deployed archive: " + archive.toString());
}
final Method getTestRunnerMethod = testRunnersClass.getMethod(METHOD_NAME_GET_TEST_RUNNER,