在我们的项目中,我们使用 maven 运行 junits 和 cobertura。我面临的问题是,
- junit 测试用例运行两次,一次在 jar 创建过程之前,然后再一次用于生成 cobertura 覆盖率报告。当与 ant 一起运行 cobertura 和 junits 时,我们只运行一次 junit,因为 cobertura 与 junits 一起运行。有没有办法用 maven 配置上述情况。我知道我们可以使用“maven.test.skip”属性来跳过junits。但是当我这样做时,我看不到 junit xml & html 文件报告。
- 另外,在 Maven 中,如何配置 junit 以批量或并行运行?
谢谢你!