blob: 62b537dbaac6ec2644ddd4070dcaffcba9cca118 [file] [log] [blame]
package test.timeout;
import org.testng.annotations.Test;
public class TestTimeOutSampleTest {
@Test
public void timeoutTest() {
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
// System.out.println("Interrupted exception");
}
// System.out.println("Finished normally");
}
}