博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
教你快速写出多线程Junit单元测试用例 - GroboUtils
阅读量:6569 次
发布时间:2019-06-24

本文共 2257 字,大约阅读时间需要 7 分钟。

摘自: http://mushiqianmeng.blog.51cto.com/3970029/897786/

本文出自One Coder博客,转载请务必注明出处: http://www.coderli.com/archives/multi-thread-junit-grobountils/

写过Junit单元测试的同学应该会有感觉,Junit本身是不支持普通的多线程测试的,这是因为Junit的底层实现上,是用System.exit退出用例执行的。JVM都终止了,在测试线程启动的其他线程自然也无法执行。JunitCore代码如下:
/**
* Run the tests contained in the classes named in the args.
* If all tests run successfully, exit with a status of 0. Otherwise exit with a status of 1.
* Write feedback while tests are running and write
* stack traces for all failed tests after the tests all complete.
* @param args names of classes in which to find tests to run
*/
public static void main(String... args) {
runMainAndExit(new RealSystem(), args);
}

/**  * Do not use. Testing purposes only.  * @param system   */ public static void runMainAndExit(JUnitSystem system, String... args) {     Result result= new JUnitCore().runMain(system, args);     system.exit(result.wasSuccessful() ? 0 : 1); }

RealSystem.java:

public void exit(int code) {

System.exit(code); }

所以要想编写多线程Junit测试用例,就必须让主线程等待所有子线程执行完成后再退出。想到的办法自然是Thread中的join方法。话又说回来,这样一个简单而又典型的需求,难道会没有第三方的包支持么?通过google,笔者很快就找到了GroboUtils这个Junit多线程测试的开源的第三方的工具包。

GroboUtils官网如下:

http://groboutils.sourceforge.net/

下载页面:

http://groboutils.sourceforge.net/downloads.html

Maven依赖方式:

net.sourceforge.groboutils
groboutils-core
5
注:需要第三方库支持:
Repository Opensymphony Releases
Repository url https://oss.sonatype.org/content/repositories/opensymphony-releases
依赖好Jar包后就可以编写多线程测试用例了。上手很简单:
/**
* 多线程测试用例
*
* @author lihzh(One Coder)
* @date 2012-6-12 下午9:18:11
* @blog http://www.coderli.com
*/
@Test
public void MultiRequestsTest() {
// 构造一个Runner
TestRunnable runner = new TestRunnable() {
@Override
public void runTest() throws Throwable {
// 测试内容
}
};
int runnerCount = 100;
//Rnner数组,想当于并发多少个。
TestRunnable[] trs = new TestRunnable[runnerCount];
for (int i = 0; i < runnerCount; i++) {
trs[i] = runner;
}
// 用于执行多线程测试用例的Runner,将前面定义的单个Runner组成的数组传入
MultiThreadedTestRunner mttr = new MultiThreadedTestRunner(trs);
try {
// 开发并发执行数组里定义的内容
mttr.runTestRunnables();
} catch (Throwable e) {
e.printStackTrace();
}
}
执行一下,看看效果。怎么样,你的Junit也可以执行多线程测试用例了吧:)。
本文出自One Coder博客,转载请务必注明出处: http://www.coderli.com/archives/multi-thread-junit-grobountils/

本文出自 “苦逼coder” 博客,转载请与作者联系!

你可能感兴趣的文章
Android-环境问题
查看>>
Android- assent和raw的区别
查看>>
Vue-系统修饰键
查看>>
1264: [AHOI2006]基因匹配Match
查看>>
[bzoj 2456]mode
查看>>
Ubuntu安装docker-ce,vagrant,virtualbox步骤
查看>>
LINUX samba的安装使用
查看>>
XAML Grid布局
查看>>
杭电2063--过山车(二分匹配)
查看>>
jsp、freemarker、velocity区别
查看>>
REM——适合移动开发的自适应方案
查看>>
【笔记】mysql入门语句8条
查看>>
迪杰斯特拉算法——PAT 1003
查看>>
网盘、云盘共享文件搜索引擎链接收藏目录
查看>>
[Asp.net mvc]OutputCacheAttribute
查看>>
用类模拟C风格的赋值+返回值
查看>>
杭电 2124 Repair the Wall(贪心)
查看>>
[转载] 七龙珠第一部——第057话 小雨对布鲁
查看>>
【5】python核心编程 第八章-条件和循环
查看>>
60. Permutation Sequence
查看>>