in src/main/java/org/junit/internal/management/ManagementFactory.java [24:41]
static Object getBeanObject(String methodName) {
if (MANAGEMENT_FACTORY_CLASS != null) {
try {
return MANAGEMENT_FACTORY_CLASS.getMethod(methodName).invoke(null);
} catch (IllegalAccessException e) {
// fallthrough
} catch (IllegalArgumentException e) {
// fallthrough
} catch (InvocationTargetException e) {
// fallthrough
} catch (NoSuchMethodException e) {
// fallthrough
} catch (SecurityException e) {
// fallthrough
}
}
return null;
}