public boolean isThreadCpuTimeSupported()

in src/main/java/org/junit/internal/management/ReflectiveThreadMXBean.java [74:89]


  public boolean isThreadCpuTimeSupported() {
    if (Holder.isThreadCpuTimeSupportedMethod != null) {
      try {
        return (Boolean) Holder.isThreadCpuTimeSupportedMethod.invoke(threadMxBean);
      } catch (ClassCastException e) {
        // fallthrough
      } catch (IllegalAccessException e) {
        // fallthrough
      } catch (IllegalArgumentException e) {
        // fallthrough
      } catch (InvocationTargetException e) {
        // fallthrough
      }
    }
    return false;
  }