从 Grails 中的 Cobertura 报告中排除插件
我在我的项目中使用 SpringSecurity 插件,还使用 Cobertura 插件来生成代码覆盖率报告。问题是我希望 SpringSecurity 特定类(登录和注销控制器、持久登录令牌等)从我的报告中排除,因为我假设它们正常工作。我希望报告仅包含我的项目特定类的代码覆盖率。我有什么办法可以实现这一目标吗?
I'm using SpringSecurity plugin in my project and also Cobertura plugin for code coverage reports. The thing is I'd like the SpringSecurity specific classes (login and logout controllers, persistent login token and so on) to be excluded from my reports, since I assume they work properly. I'd like reports to contain only my project specific classes code coverage. Is there any way I can achieve that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加上面的代码片段并在 grails-app/conf 的 BuildConfig.groovy 中配置排除列表
Add the above snippet and configure the exclusions list in BuildConfig.groovy in grails-app/conf
请参阅 使用 Cobertura 从代码覆盖率中排除代码
有一个类似的帖子从 cobertura 报告中排除某些类不起作用,但仍未解决。
Please see Exclude code from code coverage with Cobertura
There is a similar post Excluding some classes from the cobertura report doesn't work, but it is still unresolved.