本文出自One Coder博客,轉載請務必註明出處: http://www.coderli.com/archives/multi-thread-junit-grobountils/html
寫過Junit單元測試的同窗應該會有感受,Junit自己是不支持普通的多線程測試的,這是由於Junit的底層實現上,是用System.exit退出用例執行的。JVM都終止了,在測試線程啓動的其餘線程天然也沒法執行。JunitCore代碼以下:java
- /**
- * Run the tests contained in the classes named in the <code>args</code>.
- * 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:web
- public void exit(int code) {
- System.exit(code);
- }
- <dependency>
- <groupId>net.sourceforge.groboutils</groupId>
- <artifactId>groboutils-core</artifactId>
- <version>5</version>
- </dependency>
Repository | Opensymphony Releases |
Repository url | https://oss.sonatype.org/content/repositories/opensymphony-releases |
- /**
- * 多線程測試用例
- *
- * @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也能夠執行多線程測試用例了吧:)。sql
本文出自One Coder博客,轉載請務必註明出處: http://www.coderli.com/archives/multi-thread-junit-grobountils/數組