maven JUnit5并行测试未在junit-Platform.properties文件中运行

gdx19jrr  于 2022-10-26  发布在  Maven
关注(0)|答案(1)|浏览(215)

测试不并行运行,“未使用的属性”写在属性文件中,这可能是什么问题?POM:
https://gist.github.com/vindus940/60b1a6440d3be9f25ff2b00f0e74dcea
文件结构:

rekjcdws

rekjcdws1#

我遇到了与您完全相同的问题,包括IntelliJ报告junit-platform.properties中的属性未被使用。
将JUnit属性添加到我的build.gradle最终成为了我的解决方案。

test {
    useJUnitPlatform {
        includeEngines 'junit-jupiter', 'junit-vintage'
        systemProperty 'junit.jupiter.execution.parallel.enabled', 'true'
        systemProperty 'junit.jupiter.execution.parallel.config.strategy', 'dynamic'
        systemProperty 'junit.jupiter.execution.parallel.mode.default', 'concurrent'
        systemProperty 'junit.jupiter.execution.parallel.mode.classes.default', 'concurrent'
    }
}

相关问题