01: package org.testng;
02:
03: /**
04: * If a test class implements this interface, it will receive a
05: * special treatment, such as having the test name displayed
06: * in the HTML reports.
07: *
08: * @author cbeust
09: * @date Jun 6, 2006
10: */
11: public interface ITest {
12:
13: public String getTestName();
14:
15: }
|