blob: 98b3b6efbc2331d6196ca07e26139f40613435e4 [file] [log] [blame]
package org.testng;
/**
* If a test class implements this interface, it will receive a
* special treatment, such as having the test name displayed
* in the HTML reports.
*
* @author cbeust
* Jun 6, 2006
*/
public interface ITest {
public String getTestName();
}