第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

在Maven構(gòu)建中并行運(yùn)行junit測試?

在Maven構(gòu)建中并行運(yùn)行junit測試?

紫衣仙女 2020-02-18 08:00:36
在Maven構(gòu)建中并行運(yùn)行junit測試?我使用的是JUnit 4.4和Maven,還有大量的長期運(yùn)行的集成測試。當(dāng)涉及并行化測試套件時,有幾種解決方案允許我在單個測試類中并行運(yùn)行每個測試方法。但所有這些都要求我以一種或另一種方式改變測試。我真的認(rèn)為在X線程中并行運(yùn)行X不同的測試類將是一個更干凈的解決方案。我有數(shù)百個測試,所以我不關(guān)心線程個別的測試類。有什么辦法嗎?
查看完整描述

4 回答

?
慕田峪9158850

TA貢獻(xiàn)1794條經(jīng)驗(yàn) 獲得超8個贊

使用maven插件:

<build>
    <plugins>
    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.7.1</version>
        <configuration>
            <parallel>classes</parallel>
            <threadCount>5</threadCount>
        </configuration>
    </plugin>
    </plugins></build>



查看完整回答
反對 回復(fù) 2020-02-19
?
四季花海

TA貢獻(xiàn)1811條經(jīng)驗(yàn) 獲得超5個贊

從jUnit 4.7,現(xiàn)在可以不使用testng并行運(yùn)行測試。實(shí)際上,從4.6開始就有可能,但4.7中有一些修正,這將使它成為一個可行的選擇。您還可以使用Spring運(yùn)行并行測試,您可以閱讀這些測試。這里


查看完整回答
反對 回復(fù) 2020-02-19
?
慕萊塢森

TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超4個贊

受JUnit實(shí)驗(yàn)啟發(fā)并行計(jì)算機(jī)我建立了自己的跑步者副等位套房參數(shù)化跑步者。使用這些運(yùn)行程序,可以輕松地并行化測試套件和參數(shù)化測試。

Par等位Suite.java

public class ParallelSuite extends Suite {

    public ParallelSuite(Class<?> klass, RunnerBuilder builder) throws InitializationError {

        super(klass, builder);

        setScheduler(new RunnerScheduler() {

            private final ExecutorService service = Executors.newFixedThreadPool(4);

            public void schedule(Runnable childStatement) {
                service.submit(childStatement);
            }

            public void finished() {
                try {
                    service.shutdown();
                    service.awaitTermination(Long.MAX_VALUE, TimeUnit.NANOSECONDS);
                } catch (InterruptedException e) {
                    e.printStackTrace(System.err);
                }
            }
        });
    }}

參數(shù)化.java

public class ParallelParameterized extends Parameterized {

    public ParallelParameterized(Class<?> arg0) throws Throwable {

        super(arg0);

        setScheduler(new RunnerScheduler() {

            private final ExecutorService service = Executors.newFixedThreadPool(8);

            public void schedule(Runnable childStatement) {
                service.submit(childStatement);
            }

            public void finished() {
                try {
                    service.shutdown();
                    service.awaitTermination(Long.MAX_VALUE, TimeUnit.NANOSECONDS);
                } catch (InterruptedException e) {
                    e.printStackTrace(System.err);
                }
            }
        });
    }}

使用很簡單。只要改變@runwith值中的一個平行*上課。

@RunWith(ParallelSuite.class)@SuiteClasses({ATest.class, BTest.class, CTest.class})public class ABCSuite {}



查看完整回答
反對 回復(fù) 2020-02-19
  • 4 回答
  • 0 關(guān)注
  • 593 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號