Junnit springマルチスレッドテスト
本文はOne Coderブログから来ました.転載は必ず出典を明記してください. http://www.coderli.com/archives/multi-thread-junit-grobountils/
Junnitユニットテストを書いたことがある人は感覚があるはずです.Junnit自体は普通のマルチスレッドテストをサポートしていません.Junitの下の階の実現にはSystem.exitを使って用例から退出して実行します.JVMは終了しました.テストスレッドで起動する他のスレッドも当然実行できません.Junnit Coreコードは以下の通りです.
GrooUtils公式サイトは以下の通りです.
http://groboutils.sourceforge.net/
ダウンロードページ:
http://groboutils.sourceforge.net/downloads.html
Maven依存方式:
Repository
Opensymphony Releases
Repository url
https://oss.sonatype.org/content/repositories/opensymphony-releases
Jarパッケージに依存して、マルチスレッドテスティングを作成することができます.手の出し方は簡単です
本文は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
Junnitユニットテストを書いたことがある人は感覚があるはずです.Junnit自体は普通のマルチスレッドテストをサポートしていません.Junitの下の階の実現にはSystem.exitを使って用例から退出して実行します.JVMは終了しました.テストスレッドで起動する他のスレッドも当然実行できません.Junnit Coreコードは以下の通りです.
- /**
- * 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:
- public void exit(int code) {
-
- System.exit(code);
-
- }
したがって、マルチスレッドJunitテストケースを作成するには、メインスレッドがすべてのスレッドの実行が完了するのを待ってから退出しなければなりません.思い付く方法はもちろんThreadの中のjoin方法です.話はまた戻ってきて、このような簡単で典型的な需要、まさか第三者の支持がないことができますか?googleを通じて、私はすぐにGroUtilsというJunnitマルチスレッドテストのオープンソースの第三者のツールバッグを見つけました.GrooUtils公式サイトは以下の通りです.
http://groboutils.sourceforge.net/
ダウンロードページ:
http://groboutils.sourceforge.net/downloads.html
Maven依存方式:
- <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
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();
- }
- }
実行して、効果を見てください.どうですか?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