您好,登錄后才能下訂單哦!
這篇文章主要講解了“如何使Junit可以測試多線程”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“如何使Junit可以測試多線程”吧!
maven依賴:
<dependency> <groupId>net.sourceforge.groboutils</groupId> <artifactId>groboutils-core</artifactId> <version>5</version> <scope>test</scope> </dependency> 注:如果下載失敗,則可以選擇手動添加 1)手動下載依賴的地址:https://oss.sonatype.org/content/repositories/opensymphony-releases/net/sourceforge/groboutils/groboutils-core/5/ 2)將下載的jar包放到: repository\net\sourceforge\groboutils\groboutils-core\5
舉例:
import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import net.sourceforge.groboutils.junit.v1.MultiThreadedTestRunner; import net.sourceforge.groboutils.junit.v1.TestRunnable; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = "classpath:spring-test.xml") public class JunitMultiThreadPluginDemo { [@Test](https://my.oschina.net/azibug) public void testThreadJunit() throws Throwable { // 線程數(shù)組,模擬并發(fā) TestRunnable[] testThreadArray = new TestRunnable[10]; for(int i=0; i<testThreadArray.length; i++){ testThreadArray[i]=new MultiThreadTest(); } // 執(zhí)行多線程測試用例的Runner MultiThreadedTestRunner mttr = new MultiThreadedTestRunner(testThreadArray); // 并發(fā)執(zhí)行 mttr.runTestRunnables(); } /** * TestRunnable:表示一個測試線程的抽象類,子類需要實現(xiàn)該類的runTest()方法,在該方法中實現(xiàn)自己的測試代碼 */ private class MultiThreadTest extends TestRunnable { [@Override](https://my.oschina.net/u/1162528) public void runTest() throws Throwable { // 在runTest()方法中實現(xiàn) Thread.run() 中的內容 execute(); } } public void execute() { // 業(yè)務邏輯 System.out.println("在這里完成業(yè)務邏輯的相關代碼。。"); try { Thread.sleep(10000); // 模擬相關代碼的執(zhí)行 } catch (InterruptedException e) { e.printStackTrace(); } } }
感謝各位的閱讀,以上就是“如何使Junit可以測試多線程”的內容了,經過本文的學習后,相信大家對如何使Junit可以測試多線程這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。