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