blob: 9d04556937b0342a7211b102585a9d8ae601d5e0 [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 {
/**
* The name of test instance(s).
* @return name associated with a particular instance of a test.
*/
public String getTestName();
}