How to exclude classes from an OpenCover report

情到浓时终转凉″ 提交于 2019-12-08 18:08:12

问题


In generating coverage reports with OpenCover (and then generating an HTML report with ReportGenerator) for an MSTest suite, I am trying to exclude framework generated classes. In particular, classes generated under the project's namespace by a service reference.

The command I am using to generate the XML files looks like:

OpenCover.Console.exe -register:user "-target:MyProject.Tests.dll" -targetargs:"/testcontainer:MyContainer" -output:coverage.xml -mergebyhash -filter:-*.AWebService.*

I have also tried to exclude by file:

OpenCover.Console.exe -register:user "-target:MyProject.Tests.dll" -targetargs:"/testcontainer:MyContainer" -output:coverage.xml -mergebyhash  -excludebyfile:*Reference.cs 

but the service reference classes still show up in the XML file.

Is there a way to exclude only those specific classes generated by Visual Studio?


回答1:


It looks like you forgot assembly part in filter arg, try with this:

-filter:"+[*]* -[*]*.AWebService.*"


来源:https://stackoverflow.com/questions/12466290/how-to-exclude-classes-from-an-opencover-report

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!