I like to work with unittests and I think they help me alot. I use dotcover to analyze my coverage but as you know code coverage is not everything but I think it's still a vital tool.
Right now I'm working on a project with really high complexity and very high demands for accuracy(its about money so people are quite picky) so this is a project were just 100% code coverage is not enough. I would want to know that it will work every time.
Question: How can I measure my unit tests path coverage to ensure that the application works as intended? (This will require the unittests to as many as the cyclomatic complexity)
I know that this will require quite a effort and resources but in this case it's worth it.
I work with c# and visual studio.