当前位置 : 主页 > 网络安全 > 测试自动化 >

TestNg 11. 超时测试

来源:互联网 收集:自由互联 发布时间:2021-06-19
前沿:多久时间没有响应,就是超时。 代码:用timeOut这个属性,超过规定的时间就是fail,不超过就是success package com.course.testng; import org.testng.annotations.Test; public class TimeOutTest { @Test(t

前沿:多久时间没有响应,就是超时。

代码:用timeOut这个属性,超过规定的时间就是fail,不超过就是success

package com.course.testng;

import org.testng.annotations.Test;

public class TimeOutTest {

    @Test(timeOut = 3000) //单位为毫秒值
    public void timeSuccess() throws InterruptedException{
        Thread.sleep(2000);
    }

    @Test(timeOut = 2000) //单位为毫秒值
    public void timeFail() throws InterruptedException{
        Thread.sleep(3000);
    }
}

结果:

网友评论