Describe the bug
From https://github.com/coverlet-coverage/coverlet/blob/master/Documentation/GlobalTool.md
You can also ignore additional attributes by using the ExcludeByAttribute property (short name or full name supported):
To Reproduce
Create a custom attribute, apply it at any level.
Supply fully qualified through one of the drivers
Expected behavior
Is it excluded
Actual behavior
Is not excluded
Additional context
|
private bool IsExcludeAttribute(CustomAttribute customAttribute) |
None of the Instrumenter tests supply the attributesToIgnore as fully qualified
e.g
|
InstrumenterTest instrumenterTest = CreateInstrumentor(attributesToIgnore: new string[] { excludedAttribute }); |