User-166373564 posted
Hi varunpals
exclude my small funcs like getter and setter properties from my coverage report,
In Visual Studio 2008, add a feature to exclude small functions from instrumentation. A small function is a function that has very few instructions and makes no function calls (i.e. it’s a leaf). The idea behind this feature is that small
functions are unlikely to be significant in the overall profile of your application, so we can skip collecting data for them altogether to avoid the overhead of otherwise doing so. This feature is meant to exclude property getters and setters, but it
will also exclude very simple functions that are typically inlined anyway.
You could learn detailed information further about excluding small functions from instrumentation below,
Excluding Small Functions From Instrumentation
hope it helps you,
With regards