ExcludeAttributes 在 NCover 1.5.8 中不起作用

发布于 2024-11-25 13:31:21 字数 660 浏览 2 评论 0原文

我创建了一个名为“CoverageExcludeAttribute”的自定义属性,并将其放置在我想要从代码覆盖率分析中排除的类之上。但排除不起作用。覆盖率报告显示了 Test dll 以及所有引用的程序集(其中包括包含排除属性的类)的覆盖率,

<UsingTask TaskName="NCoverExplorer.MSBuildTasks.NCover" AssemblyFile="$(Libraries)\NCoverExplorer.MSBuildTasks.dll"/>
<Target Name="NcoverCoverage">
   <NCover ToolPath="C:\Program Files\TestDriven.NET 3\NCover\1.5.8"
        CommandLineExe="D:\Xunit\xunit.console.exe"
        CommandLineArgs="MyTestDll"
        WorkingDirectory="MyWorkingDirectory"
        excludeAttributes="CoverageExcludeAttribute" 
    LogFile="coverage.log"
   />
</Target>

我是否遗漏了某些内容?

谢谢。

I created a custom attribute called "CoverageExcludeAttribute", and placed it above the classes which I want to exclude from my code coverage analysis. But the exclusions doesn't work. The coverage report shows coverage for the Test dll along with all the referenced assemblies (which includes classes containing the exclusion attribute)

<UsingTask TaskName="NCoverExplorer.MSBuildTasks.NCover" AssemblyFile="$(Libraries)\NCoverExplorer.MSBuildTasks.dll"/>
<Target Name="NcoverCoverage">
   <NCover ToolPath="C:\Program Files\TestDriven.NET 3\NCover\1.5.8"
        CommandLineExe="D:\Xunit\xunit.console.exe"
        CommandLineArgs="MyTestDll"
        WorkingDirectory="MyWorkingDirectory"
        excludeAttributes="CoverageExcludeAttribute" 
    LogFile="coverage.log"
   />
</Target>

Am I missing something?

Thanks.

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

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

发布评论

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

评论(2

格子衫的從容 2024-12-02 13:31:21

确保您的属性是在全局命名空间中定义的,或者在 excludeAttributes 中提供完整的类型名称。

Make sure that your attribute is defined in a global namespace or provide a full type name in excludeAttributes.

无悔心 2024-12-02 13:31:21

如果您使用 .NET Framework 4.0,则可以使用现有属性

排除代码覆盖属性

系统.诊断.代码分析

在使用 NCover 1.5.8 时,这对我来说似乎工作得很好,至少在使用 NCoverExplorer 时是这样。该属性是自动选取的。

If you are using .NET Framework 4.0 you can use existing attribute

ExcludeFromCodeCoverageAttribute

From namespace:

System.Diagnostic.CodeAnalysis

That seems to be working fine for me when using NCover 1.5.8 at least when using NCoverExplorer. This attribute is picked up automatically.

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