Run unit tests in IntelliJ IDEA from multiple modules together

前端 未结 6 1967
忘掉有多难
忘掉有多难 2021-01-29 23:56

How can I run all tests from two or more IDEA modules at once?

I\'m using many modules and it is important to run all of the unit tests often and when I choose more tha

6条回答
  •  庸人自扰
    2021-01-30 00:36

    Another not so obvious case is when code coverage is needed on more than one project. The naive solution would be to select multiple projects and run all unit tests in them at once. As it turns out, unit tests may fail if the classpath changes and IntelliJ has exactly one classpath entry per run configuration. In this case, running unit tests on projects sequentially is actually sufficient. That's because at the end of each run IntelliJ (2017.2.5 Community Edition) asks if the collected coverage should replace or should be added to previously collected coverage stats.

提交回复
热议问题