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

org.testng.internal.thread.TestNGThread Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
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 + "()");
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy