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.
是否可以将 Scoverage 与 TestNG 一起使用,还是必须使用 JUnit?我在我的 Gradle 脚本中包含了 gradle-scoverage 插件并且它正在运行,但它显示了 0.00% 的覆盖率。
有什么方法可以配置脚本工作还是我必须在 Scoverage 和 TestNG 之间进行选择?
解决方案是修改您的 build.gradle 文件以包括:
tasks.withType(Test) { useTestNG() }
注意:这还不够:
test { useTestNG() { } }