package org.testng;

This interface lets you alter the test name of an ITestResult object. Sample :
    if (testResult instanceOf IAlterTestName) {
        ((ITestResult) testResult).setTestName(newName);
    }
/** * This interface lets you alter the test name of an {@link ITestResult} object. * Sample : <br> * * <pre> * if (testResult instanceOf IAlterTestName) { * ((ITestResult) testResult).setTestName(newName); * } * * </pre> */
public interface IAlterTestName {
Params:
  • name – - The new name to be used as a test name
/** * @param name - The new name to be used as a test name */
void setTestName(String name); }