.NET Code Coverage for Continuous Integration using TeamCity and dotCover

How much of our code is being covered by our unit tests? Are there areas we are not testing? By capturing code coverage data during a test run, we can analyze which areas of our applications are well-tested and which ones require additional tests to be written. And where better to capture code coverage information than on our build server? In this webinar we will use dotCover to collect code coverage information while running tests in our CI process. We will see how we can configure code coverage and how w
Back to Top