13

As the title says in some classes there's an own coverage line included as example:

dotCover - own coverage

What does this mean?

FireEmerald
  • 1,002
  • 12
  • 21

1 Answers1

2

own coverage doesn't include code of generated classes/methods(==lambdas)

WinnieThePoooh
  • 289
  • 2
  • 3
  • hmm, so the test coverage explorer breaks up a method into sub methods and simple statements. simple statements falls into own coverage part and lamgdas (I imagine also local functions) has their own coverage results. – mkb Feb 12 '21 at 03:43