blob: b5ecded0001846d24e0f878d2851154c65114afd [file] [log] [blame]
package test.timeout;
import org.testng.annotations.Test;
/**
* Tests timeouts set from testng.xml
* @author cbeust
*/
public class TimeOutSample2Test {
@Test(timeOut = 1_500)
public void timeoutShouldFailByTimeOut() throws InterruptedException {
Thread.sleep(10_000);
}
}