ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

JUnit5快速入门指南-2

2021-08-14 13:31:56  阅读:204  来源: 互联网

标签:指南 10 入门 int void System result JUnit5 out


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

 //结果类
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);

    }

 

JUnit5快速入门指南-2

 

优化方法:

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

@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

 

 

标签:指南,10,入门,int,void,System,result,JUnit5,out
来源: https://www.cnblogs.com/orangezhangzz/p/15140663.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有