Linq Expressions

Is there a way to tell to dotCover to ignore linq expressions from being covered?

for example dotCover complains about the following:

Capture.PNG

0
1 comment

Hello,
Currently there is no special option for ignoring lambda-expressions.
But you can try to specify an exclude filter (dotCover -> Edit Coverage Filters) for functions with a mask which matches real function names generated by compiler for lambdas.
Something like "<*>b_*"

0

Please sign in to leave a comment.