标签: unit-testing grails code-coverage cobertura spock
使用grails test-app unit:spock -coverage我运行了
grails test-app unit:spock -coverage
“Why is this method returning null even though the underlying controller is mocked using Spocks' Mock()?”
现在,覆盖率报告“认为”方法 createCrumb 尚未经过测试。
答案 0 :(得分:2)
我的命令实际上有一个拼写错误。作为类型我写了 spoc 而不是 spock ,导致没有测试运行。
grails test-app unit:spoc -coverage
将此值更改为正确值后,实际运行测试并且覆盖率报告包含它们。
所以:是,覆盖插件可以报告Spock规范。