If I have an existing solution containing several C # projects, are there any static analysis tools that can help me determine which areas of the code are most commonly used?
I would like to use this information to determine in which areas the test coverage should be covered.
I already looked at some static analysis tools, but they mostly seem to focus on things like complexity, coding conventions, code duplication, etc.
Alternatively, if there are no analysis tools available that can do this, do you have any tips on how to determine which code I should focus on testing first?
Thanks!
EDIT: Just to clarify what I'm looking for, this is not code coverage. I would like to describe what parts of my application are most often used, so I can in turn focus on improving coverage in these areas. I try to avoid just writing tests for areas that do not yet have them, as they can be edge cases that are not often run.
c # visual-studio integration-testing testing
Bena
source share