Excluding Items From Code Coverage

There’s an attribute in nCover that can be applied to your code to exclude it when doing code coverage. This is handy for auto-generated types such as web services etc.

The attribute is in the nCover assembly, but most people wouldn’t want to ship with their assemblies. Fortunately, you can define your own attribute. If you’re using TestDriven.NET, call it ‘CoverageExcludeAttribute’, if not, call it what you want.

When using NCover, pass the name of the attribute in the /ea WhateverYouCalledTheAttribute command line attribute.

Here’s the code, with comments. Remember, don’t put this in a namespace!

/// <summary> 
/// Use this attribute on types that do not need code coverage analysis.
/// Such types are auto-generated types, such as web services etc.
///
/// This attribute is used by TestDriven.NET to exclude the type/method in the 'test with coverage' functionality.
/// This attribute can also be passed to NCover proper by using the /ea CoverageExcludeAttribute command line.
/// </summary>
/// <remarks>
/// Note that this should NOT be part of a namespace!
/// </remarks>
[CoverageExclude]
class CoverageExcludeAttribute : Attribute { }

🙏🙏🙏

Since you've made it this far, sharing this article on your favorite social media network would be highly appreciated 💖! For feedback, please ping me on Twitter.

Leave a comment

Comments are moderated, so there may be a short delays before you see it.

Published