使用 aqtime 测量单元测试的代码覆盖率
我想使用 aqtime 测量单元测试的代码覆盖率。要测试的应用程序使用了大量的升压功能。现在这些boost方法出现在测试报告中。使用报告中的这些方法,几乎不可能解释它,因为我没有测试 boost,而是使用 boost 的类。
有没有一种快速的方法可以从代码覆盖率中排除 boost ?
I want to measure the code coverage of an unit test with aqtime. The application to test uses a lot of boost functionality. Now these boost methods appear in the test report. With these methods in the report, it is nearly impossible to interpret it since I did not test boost but the classes using boost.
Is there a fast way to exclude boost from the code coverage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了一种方法:
与所有内容一起运行
创建一个过滤器,其中包括
一切你不想要的
选择过滤器的所有元素
为所有元素创建排除区域
这些元素
再次运行并优化。
I found a way:
run with everything
create a filter that includes
everything you don't want
select all elements of the filter
create an excluding area for all
those elements
run again and refine.