What tools are available for calculating code coverage using browser automation tests

I have a site written in ASP.NET MVC 3. I have compiled several browser automation tests that target this site. I want to use the same test suite to calculate website code code.

I know that NCover does this kind of work, but based on my knowledge, there are two problems. Firstly, NCover gives code coverage digits for both the base code and my code. Two, it's expensive.

+3
source share
1 answer

NCover has filters that can be used to ignore the framework code.

OpenCover PartCover, , - .

IIS , , IIS express - .

+2

All Articles