blob: 59ea188878210d2fb6d60600464092449df8ca68 [file] [log] [blame]
package test.timeout;
import org.testng.annotations.Test;
public class TimeOutWithParallelSample {
@Test(timeOut = 1_000)
public void myTestMethod() throws InterruptedException {
Thread.sleep(1_500);
}
}