/** {@inheritDoc} */
 public void notifyBeforeTestSuiteStarted(Class<?> testClass, Method[] testMethods) {
   for (PowerMockTestListener powerMockTestListener : powerMockTestListeners) {
     try {
       powerMockTestListener.beforeTestSuiteStarted(testClass, testMethods);
     } catch (Exception e) {
       throw new RuntimeException(
           String.format(ERROR_MESSAGE_TEMPLATE, "beforeTestSuiteStarted", powerMockTestListener),
           e);
     }
   }
 }