01: package test.timeout;
02:
03: import org.testng.annotations.Test;
04:
05: /**
06: * Tests timeouts set from testng.xml
07: * @author cbeust
08: */
09: public class TimeOutSample2Test {
10: @Test(timeOut=1500)
11: public void timeoutShouldFailByTimeOut()
12: throws InterruptedException {
13: Thread.sleep(10 * 1000);
14: }
15:
16: public static void ppp(String s) {
17: System.out.println("[TimeOutTest]@@@@@@@@@@@@@@@ " + s);
18: }
19:
20: }
|