cmdwtf / BuildTimestampGenerator

A small .NET source generator that creates a class to describe when your project was built.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add `[ExcludeFromCodeCoverage]` and/or `[GeneratedCode]` attributes

ricardoboss opened this issue · comments

Hi! I found this package to be quite useful!

I'd like to cover my code and the generated class pops up as uncovered code.
The simplest solution might be to add a dummy test that just checks each property.

The cleaner solution is to add [ExcludeFromCodeCoverage] and/or [GeneratedCode] attributes to signal to the test runner that this code cannot be/should not be covered directly.