Junnit springマルチスレッドテスト


本文はOne Coderブログから来ました.転載は必ず出典を明記してください. http://www.coderli.com/archives/multi-thread-junit-grobountils/
Junnitユニットテストを書いたことがある人は感覚があるはずです.Junnit自体は普通のマルチスレッドテストをサポートしていません.Junitの下の階の実現にはSystem.exitを使って用例から退出して実行します.JVMは終了しました.テストスレッドで起動する他のスレッドも当然実行できません.Junnit Coreコードは以下の通りです.

  
  
  
  
  1. /** 
  2.      * Run the tests contained in the classes named in the <code>args</code>. 
  3.      * If all tests run successfully, exit with a status of 0. Otherwise exit with a status of 1. 
  4.      * Write feedback while tests are running and write 
  5.      * stack traces for all failed tests after the tests all complete. 
  6.      * @param args names of classes in which to find tests to run 
  7.      */ 
  8.     public static void main(String... args) { 
  9.         runMainAndExit(new RealSystem(), args); 
  10.     } 
  11.  
  12.     /** 
  13.      * Do not use. Testing purposes only. 
  14.      * @param system  
  15.      */ 
  16.     public static void runMainAndExit(JUnitSystem system, String... args) { 
  17.         Result result= new JUnitCore().runMain(system, args); 
  18.         system.exit(result.wasSuccessful() ? 0 : 1); 
  19.     } 
RealSystem.java:

  
  
  
  
  1. public void exit(int code) { 
  2.  
  3.         System.exit(code); 
  4.  
  5.     } 
したがって、マルチスレッドJunitテストケースを作成するには、メインスレッドがすべてのスレッドの実行が完了するのを待ってから退出しなければなりません.思い付く方法はもちろんThreadの中のjoin方法です.話はまた戻ってきて、このような簡単で典型的な需要、まさか第三者の支持がないことができますか?googleを通じて、私はすぐにGroUtilsというJunnitマルチスレッドテストのオープンソースの第三者のツールバッグを見つけました.
 
 GrooUtils公式サイトは以下の通りです.
 
http://groboutils.sourceforge.net/
 
ダウンロードページ:
http://groboutils.sourceforge.net/downloads.html
 
Maven依存方式:
 

  
  
  
  
  1. <dependency> 
  2.       <groupId>net.sourceforge.groboutils</groupId> 
  3.       <artifactId>groboutils-core</artifactId> 
  4.       <version>5</version> 
  5.     </dependency> 
注:第三者ライブラリのサポートが必要です.
Repository
Opensymphony Releases
Repository url
https://oss.sonatype.org/content/repositories/opensymphony-releases
Jarパッケージに依存して、マルチスレッドテスティングを作成することができます.手の出し方は簡単です

  
  
  
  
  1. /** 
  2.      *   
  3.      *  
  4.      * @author lihzh(One Coder) 
  5.      * @date 2012-6-12  9:18:11 
  6.      * @blog http://www.coderli.com 
  7.      */ 
  8.     @Test 
  9.     public void MultiRequestsTest() { 
  10.                 //  Runner 
  11.         TestRunnable runner = new TestRunnable() { 
  12.             @Override 
  13.             public void runTest() throws Throwable { 
  14.                 //   
  15.             } 
  16.         }; 
  17.         int runnerCount = 100
  18.                 //Rnner , 。 
  19.         TestRunnable[] trs = new TestRunnable[runnerCount]; 
  20.         for (int i = 0; i < runnerCount; i++) { 
  21.             trs[i] = runner; 
  22.         } 
  23.                 //  Runner, Runner  
  24.         MultiThreadedTestRunner mttr = new MultiThreadedTestRunner(trs); 
  25.         try { 
  26.                         //   
  27.             mttr.runTestRunnables(); 
  28.         } catch (Throwable e) { 
  29.             e.printStackTrace(); 
  30.         } 
  31.     } 
実行して、効果を見てください.どうですか?Junnitもマルチスレッドテストを実行できますよね.
本文はOne Coderブログから来ました.転載は必ず出典を明記してください. http://www.coderli.com/archives/multi-thread-junit-grobountils/
======================================================================================
Mavenは第三者Jarファイルを使用する二つの方法です.
mvn install:install-file-Dfile=grobouttils-cores-5.jar-DgroupId=net.sourceforg.groboutils-DartiftId=grobatils-Dversion=5-Dpackaging=jar