Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does own coverage mean in dotCover?

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

dotCover - own coverage

What does this mean?

like image 878
FireEmerald Avatar asked May 23 '18 08:05

FireEmerald


People also ask

How do I run code coverage in ReSharper?

Ctrl+U D commands. You can use this command to run coverage analysis of unit tests from the editor, from the Solution Explorer, or from unit tests sessions.

What is Dot cover?

JetBrains dotCover is a . NET unit test runner and code coverage tool. dotCover lets us analyze how much of our . NET application code is actually being tested. By measuring method calls during unit tests or when running the application manually, dotCover shows us which statements were covered and which were not.


1 Answers

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

like image 99
WinnieThePoooh Avatar answered Sep 17 '22 19:09

WinnieThePoooh