51Testing软件测试论坛

标题: TestNG入门教程-5-timeOut属性 [打印本页]

作者: 天天酷派哦    时间: 2018-4-10 15:21
标题: TestNG入门教程-5-timeOut属性
       这篇先来介绍@Test注释下的一个属性-timeOut。字面意思就是超时判断,详细点说。如果哪个测试方法
需要监听执行的时间,那么就可以考虑采用timeOut属性。例如,实际的接口测试中,加入登录接口时间不能
超过3秒中。下面来看看如何监控这个方法如果运行时间超过3秒就抛出异常。

  1. [java] view plain copy
  2. package com.java.learn;  
  3.   
  4. import org.testng.annotations.Test;  
  5.   
  6. /**
  7. * create by Anthony on 2017/10/31
  8. */  
  9. public class TimeoutTest {  
  10.   
  11.     @Test(timeOut = 3000)  
  12.     public void loginTest(){  
  13.         try{  
  14.             Thread.sleep(3100);  
  15.         }catch (InterruptedException e){  
  16.             System.out.println(e.toString());  
  17.         }  
  18.   
  19.     }  
  20. }  
复制代码

运行下这个Testng测试用例,看是否抛出异常。
[attach]113171[/attach]

我们来更改下Thread.sleep(2800);再次运行,看看效果。

[attach]113172[/attach]
       总结:当某些测试用例需要测试运行时间(一般在接口测试中会遇到)的时候,利用@Test这个注释中的
timeOut属性,可以帮你做到监控时间的功能。







欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2