All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testng.IAlterTestName Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy