JUNIT4 GroboUtils多线程测试
利用JUNIT4,GroboUtils进行多线程测试
多线程编程和测试一直是比较难搞的事情,特别是多线程测试。只用充分的测试,才可以发现多线程编码的潜在BUG。下面就介绍一下我自己在测试多线程并发程序时用的一个比较简单好用的测试工具类库。即JUNIT4和GroboUtils。
废话不多说,把代码贴出来,大家一看就明白了。
- import java.util.ArrayList;
- import java.util.HashSet;
- import java.util.Hashtable;
- import java.util.List;
- import java.util.Map;
- import java.util.Set;
- import net.sourceforge.groboutils.junit.v1.MultiThreadedTestRunner;
- import net.sourceforge.groboutils.junit.v1.TestRunnable;
- import org.junit.After;
- import org.junit.Before;
- import org.junit.Test;
- import org.springframework.context.ApplicationContext;
- import org.springframework.context.support.ClassPathXmlApplicationContext;
- public class MutiThreadTest {
- //此处可以声明一些公共变量
- static ApplicationContext context = null;
- static String[] path = new String[] { "" };
- static Map<String, String> countMap = new Hashtable<String, String>();
- static Map<String, String> countMap2 = new Hashtable<String, String>();
- static Set<String> countSet = new HashSet<String>();
- static List<String> list = new ArrayList<String>();
- @Before
- public void setUp() throws Exception {
- context = new ClassPathXmlApplicationContext(path);
- }
- @After
- public void tearDown() throws Exception {
- context = null;
- }
- /**
- * JUNIT会运行这个方法,是主线程
- */
- @Test
- public void testThreadJunit() throws Throwable {
- //TestRunnable,实例化自定义的7个线程
- TestRunnable tr1, tr2, tr3, tr4, tr5, tr6, tr7;
- tr1 = new ThreadA();
- tr2 = new ThreadB();
- tr3 = new ThreadC();
- tr4 = new ThreadD();
- tr5 = new ThreadE();
- tr6 = new ThreadF();
- tr7 = new ThreadG();
- //必须声明为一个数组,把该数组当参数传递给 MultiThreadedTestRunner
- TestRunnable[] trs = { tr1, tr2, tr3, tr4, tr5, tr6, tr7 };
- //不需改动
- MultiThreadedTestRunner mttr = new MultiThreadedTestRunner(trs);
- //执行MTTR和7线程
- mttr.runTestRunnables();
- }
- /**
- * 要运行多线程,首先要实现自定义的线程</br>
- * 如下我定义了A,B,C,D,E,F,G七个线程</br>
- * 注意:自定义线程必须要继承TestRunnable</br>
- * 并且覆盖runTest()方法
- *
- */
- private class ThreadA extends TestRunnable {
- @Override
- public void runTest() throws Throwable {
- //线程要调用的方法或者要执行的操作
- myCommMethod2();
- }
- }
- private class ThreadB extends TestRunnable {
- @Override
- public void runTest() throws Throwable {
- myCommMethod2();
- }
- }
- private class ThreadC extends TestRunnable {
- @Override
- public void runTest() throws Throwable {
- myCommMethod2();
- }
- }
- private class ThreadD extends TestRunnable {
- @Override
- public void runTest() throws Throwable {
- myCommMethod2();
- }
- }
- private class ThreadE extends TestRunnable {
- @Override
- public void runTest() throws Throwable {
- myCommMethod2();
- }
- }
- private class ThreadF extends TestRunnable {
- @Override
- public void runTest() throws Throwable {
- myCommMethod2();
- }
- }
- private class ThreadG extends TestRunnable {
- @Override
- public void runTest() throws Throwable {
- myCommMethod2();
- }
- }
- /**
- * 线程要调用的方法。在此方法中</br>
- * 实现你的多线程代码测试。
- * @throws Exception
- */
- public void myCommMethod2() throws Exception {
- System.out.println("线程===" + Thread.currentThread().getId() + "执行myCommMethod2操作开始");
- for (int i = 0; i <10; i++) {
- int a = i*5;
- System.out.println(a);
- }
- System.out.println("线程===" + Thread.currentThread().getId() + "执行myCommMethod2操作结束");
- }
- }
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Hashtable;
import java.util.List;
import java.util.Map;
import java.util.Set; import net.sourceforge.groboutils.junit.v1.MultiThreadedTestRunner;
import net.sourceforge.groboutils.junit.v1.TestRunnable; import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext; public class MutiThreadTest {
//此处可以声明一些公共变量
static ApplicationContext context = null;
static String[] path = new String[] { "" };
static Map<String, String> countMap = new Hashtable<String, String>();
static Map<String, String> countMap2 = new Hashtable<String, String>();
static Set<String> countSet = new HashSet<String>();
static List<String> list = new ArrayList<String>();@Before
public void setUp() throws Exception {
context = new ClassPathXmlApplicationContext(path);
} @After
public void tearDown() throws Exception {
context = null;
}
/**
* JUNIT会运行这个方法,是主线程
*/
@Test
public void testThreadJunit() throws Throwable {
//TestRunnable,实例化自定义的7个线程
TestRunnable tr1, tr2, tr3, tr4, tr5, tr6, tr7;
tr1 = new ThreadA();
tr2 = new ThreadB();
tr3 = new ThreadC();
tr4 = new ThreadD();
tr5 = new ThreadE();
tr6 = new ThreadF();
tr7 = new ThreadG();
//必须声明为一个数组,把该数组当参数传递给 MultiThreadedTestRunner
TestRunnable[] trs = { tr1, tr2, tr3, tr4, tr5, tr6, tr7 };
//不需改动
MultiThreadedTestRunner mttr = new MultiThreadedTestRunner(trs);
//执行MTTR和7线程
mttr.runTestRunnables();
} /**
* 要运行多线程,首先要实现自定义的线程</br>
* 如下我定义了A,B,C,D,E,F,G七个线程</br>
* 注意:自定义线程必须要继承TestRunnable</br>
* 并且覆盖runTest()方法
*
*/
private class ThreadA extends TestRunnable {
@Override
public void runTest() throws Throwable {
//线程要调用的方法或者要执行的操作
myCommMethod2();
}
} private class ThreadB extends TestRunnable {
@Override
public void runTest() throws Throwable {
myCommMethod2();
}
} private class ThreadC extends TestRunnable {
@Override
public void runTest() throws Throwable {
myCommMethod2();
}
} private class ThreadD extends TestRunnable {
@Override
public void runTest() throws Throwable {
myCommMethod2();
}
} private class ThreadE extends TestRunnable {
@Override
public void runTest() throws Throwable {
myCommMethod2();
}
} private class ThreadF extends TestRunnable {
@Override
public void runTest() throws Throwable {
myCommMethod2();
}
} private class ThreadG extends TestRunnable {
@Override
public void runTest() throws Throwable {
myCommMethod2();
}
} /**
* 线程要调用的方法。在此方法中</br>
* 实现你的多线程代码测试。
* @throws Exception
*/
public void myCommMethod2() throws Exception {
System.out.println("线程===" + Thread.currentThread().getId() + "执行myCommMethod2操作开始");
for (int i = 0; i <10; i++) {
int a = i*5;
System.out.println(a);
}
System.out.println("线程===" + Thread.currentThread().getId() + "执行myCommMethod2操作结束");
}
}
参考文章:
[url]
http://www.ibm.com/developerworks/cn/java/j-lo-test-multithread/index.html?ca=drs-
[/url]
[url]
http://groboutils.sourceforge.net/index.html[/url]
<ul>
<li><a href="http://dl.iteye.com/topics/download/9a171d91-b8f2-34cd-934e-5207ccdb61ab">JUNIT多线程测试.rar</a> (141.5 KB)</li>
<li>下载次数: 104</li>
</ul>
JUNIT4 GroboUtils多线程测试的更多相关文章
- Junit使用GroboUtils进行多线程测试
写过Junit单元测试的同学应该会有感觉,Junit本身是不支持普通的多线程测试的,这是因为Junit的底层实现上,是用System.exit退出用例执行的.JVM都终止了,在测试线程启动的其他线程自 ...
- 关于JUnit4无法支持多线程测试的解决方法
转自:https://segmentfault.com/a/1190000003762719 其实junit是将test作为参数传递给了TestRunner的main函数.并通过main函数进行执行. ...
- 使用Spring+Junit4.4进行测试(使用注解)
http://nottiansyf.iteye.com/blog/345819 使用Junit4.4测试 在类上的配置Annotation @RunWith(SpringJUnit4ClassRunn ...
- 用Spring+Junit4.4进行测试(使用注解)
http://nottiansyf.iteye.com/blog/345819 使用Junit4.4测试 在类上的配置Annotation @RunWith(SpringJUnit4ClassRunn ...
- 使用Spring+Junit4.4进行测试
http://nottiansyf.iteye.com/blog/345819 使用Junit4.4测试 在类上的配置Annotation @RunWith(SpringJUnit4ClassRunn ...
- testng入门教程12 TestNG执行多线程测试
testng入门教程 TestNG执行多线程测试 testng入门教程 TestNG执行多线程测试 并行(多线程)技术在软件术语里被定义为软件.操作系统或者程序可以并行地执行另外一段程序中多个部分或者 ...
- TestNG多线程测试-注解方式实现
用@Test(invocationCount = x,threadPoolSize = y)声明,invocationCount表示执行次数,threadPoolSize表示线程池大小. packag ...
- TestNg之XMl形式实现多线程测试
为什么要使用多线程测试? 在实际测试中,为了节省测试时间,提高测试效率,在实际测试场景中经常会采用多线程的方式去执行,比如爬虫爬数据,多浏览器并行测试. 关于多线程并行测试 TestNG中实现多线程并 ...
- TestNG 多线程测试
TestNG以注解的方式实现多线程测试 import org.testng.annotations.Test; public class TreadDemo { // invocationCount ...
随机推荐
- linux-ntp-10
Unix/linux类:ntp.aliyun.com,ntp1-7.aliyun.com windows类: time.pool.aliyun.com s1a.time.edu.cn 北京邮电大学 s ...
- Android应用系列:仿MIUI的Toast动画效果实现
前言 相信有些人用过MIUI,会发现小米的Toast跟Android传统的Toast特么是不一样的,他会从底部向上飞入,然后渐变消失.看起来效果是挺不错的,但是对于Android原生Toast是不支持 ...
- [BZOJ2870]最长道路tree:点分治
算法一:点分治+线段树 分析 说是线段树,但是其实要写树状数组卡常. 代码 #include <bits/stdc++.h> #define rin(i,a,b) for(register ...
- Oracle数据库锁表查询
--查看数据库最大连接数 select value from v$parameter where name = 'processes'; --更改数据库连接数 alter system scope = ...
- centos7 安装 Spring Tools 4 for Eclipse
1.spring 官网下载 https://spring.io/tools 2.解压 tar -zxvf spring-tool-suite--.RELEASE-e4.11.0-linux.gtk.x ...
- 64位 Qt5.12 MySql 连接问题
关于怎么检查Qt是否带MySql驱动 ,到Qt安装目录下 plugins\sqldrivers下寻找是否有qsqlmysql.dll文件 例如:F:\Qt\Qt5.9.6\5.9.6\msv ...
- Oracle JET 单页面应用程序Router 使用(上)
单页面应用程序:使用一个进加载一次的网页,如果页面由于用户的交互而改变,则仅绘制更改的页面部分. 要创建单页面应用程序需要使用 oj.Router 的虚拟导航来支持,ojModule 用来响应页面的重 ...
- js实现两个从input获取到的数字相加引发的问题
从input中获取到的数据是文本类型的,如果不转化类型直接相加会变成字符串的相加. 使用Number()函数可以解决这个问题,如下 var c = Number(a) + Number(b)
- 自动化应用一键部署卸载&持续构建测试与交付
1.代码仓库:版本控制Gitlab Gitlab后台管理开发视角Gitlab的应用运维视角Gitlab的应用Gitlab本地使用 2.批量部署交付工具:Ansible Ansible虚拟环境构建Ans ...
- DeepFaceLab 模型预训练参数Pretrain的使用!
Pretrain参数是20190501版本才加入的参数,作者加入这个参数的目的应该是提升模型的训练速度和增强适应性.具体有哪些提升,需要大家去摸索,我这里分享一下自己的使用过程. 这个参数仅针对S ...