blob: c9f6f89277043390f9fc4f49ef0d2745722e16df [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
* @date Jun 6, 2006
*/
public interface ITest {
public String getTestName();
}