1package org.testng;
2
3public interface IConfigurationListener2 extends IConfigurationListener {
4
5  /**
6   * Invoked before a configuration method is invoked.
7   */
8  void beforeConfiguration(ITestResult tr);
9
10}
11