Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 jmockit 与 Ant 一起使用。对于每个测试文件运行,index.html都会在覆盖率报告文件夹中创建/覆盖一个文件。
index.html
对于多个测试文件,这index.html会被覆盖。
我正在寻找所有文件的合并报告。应该做什么?我已阅读有关使用.ser文件的信息,但我不知道如何创建然后使用它们?
.ser
看看这里。诀窍是设置
-Djmockit-coverage-output=merge
(或serial- 阅读上面链接中的差异)。
serial
干杯,