Package org.testng
Interface IAlterTestName
-
- All Known Implementing Classes:
TestResult
public interface IAlterTestNameThis interface lets you alter the test name of anITestResultobject. Sample :
if (testResult instanceOf IAlterTestName) { ((ITestResult) testResult).setTestName(newName); }
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetTestName(java.lang.String name)
-