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