JUnit5快速入门指南-2「建议收藏」

JUnit5快速入门指南-2「建议收藏」上面代码中{currentRepetition}和{totalRepetitions}表示对于当前重复和重复的总数中的占位符。

欢迎大家来到IT世界,在知识的湖畔探索吧!

重复测试中容易产生的问题

 //结果类
private static int result = 0;
public static int count(int x) throws InterruptedException {
    int i = result;
    sleep(1000);
    result = i + x;
    return result;
}
// 调用以上方法多线程测试
    @RepeatedTest(10)
    void countTest() throws InterruptedException{
        int result = Calculator.count(1);
        System.out.println(result);
              assertEquals(1,result);

    }

欢迎大家来到IT世界,在知识的湖畔探索吧!

JUnit5快速入门指南-2「建议收藏」

优化方法:

欢迎大家来到IT世界,在知识的湖畔探索吧!public static void clear() {
    result = 0;
    System.out.println("当前结果已清零!");
}
JUnit5快速入门指南-2「建议收藏」

repate设置测试的名称

@RepeatedTest(value = 10,name = "重复测试第{currentRepetition}次,共{totalRepetitions}次")void countTest1() throws InterruptedException{    int result =Calculator.count(1);    System.out.println(result);}
JUnit5快速入门指南-2「建议收藏」

上面代码中*{currentRepetition}{totalRepetitions}*表示对于当前重复和重复的总数中的占位符。

访问RepetitionInfo

欢迎大家来到IT世界,在知识的湖畔探索吧!@RepeatedTest(10)
void countTest2(RepetitionInfo repetitionInfo) throws InterruptedException{
    System.out.println("当前的次数 #" + repetitionInfo.getCurrentRepetition());
    assertEquals(3, repetitionInfo.getTotalRepetitions());
}
JUnit5快速入门指南-2「建议收藏」

控制的输出(把before和after的输出去掉了):

计算器的多线程测试

@RepeatedTest(value = 10,name = "重复执行10次的加法测试,当前第{currentRepetition}次,共{totalRepetitions}次")
public void add(){
    int result= Calculator.add(4,2);
    System.out.println(result);
    assertEquals(6,result);
}
JUnit5快速入门指南-2「建议收藏」

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://itzsg.com/18010.html

(0)

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

联系我们YX

mu99908888

在线咨询: 微信交谈

邮件:itzsgw@126.com

工作时间:时刻准备着!

关注微信