覆盖率插件(Cobertura under the hood)是否报告 Spock 规范?

发布于 2024-10-11 23:43:05 字数 318 浏览 9 评论 0原文

中解释的测试

使用 grails test-app unit:spock -coverage 我运行了“即使使用 Spocks 的 Mock() 模拟底层控制器,为什么此方法仍返回 null?

现在覆盖率报告“认为”方法 createCrumb 尚未经过测试。

With grails test-app unit:spock -coverage I ran the test explained at

"Why is this method returning null even though the underlying controller is mocked using Spocks' Mock()?"

Now the coverage report "thinks" that the method createCrumb has not been tested.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

_畞蕅 2024-10-18 23:43:05

实际上我的命令有一个拼写错误。作为类型,我编写了 spoc 而不是 spock导致根本没有测试运行

grails test-app unit:spoc -coverage

将其更改为正确的值后,测试实际运行并且覆盖率报告包含它们。

所以:是的,覆盖率插件确实会报告 Spock 规范

I actually had a typo in my command. As type I wrote spoc instead of spock, causing no tests to run at all.

grails test-app unit:spoc -coverage

After changing this to the correct values, the tests were actually run and the coverage report contained them.

So: YES, the coverage plugin DOES report on Spock specifications.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文