org.testng.internal.thread.TestNGThread Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng.internal.thread;
/**
* Custom named thread.
*
* @author Alexandru Popescu
*/
public class TestNGThread extends Thread {
public TestNGThread(String methodName) {
super("TestNGInvoker-" + methodName + "()");
}
public TestNGThread(Runnable target, String methodName) {
super(target, "TestNGInvoker-" + methodName + "()");
}
}