chevron-thin-right chevron-thin-left brand cancel-circle search youtube-icon google-plus-icon linkedin-icon facebook-icon twitter-icon toolbox download check linkedin phone twitter-old google-plus facebook profile-male chat calendar profile-male
0 votes
I have a demo edition of 3.1.3 which is supposed to support the code coverage feature included in VS Team System. I don't see this VSTS listed in the list of supported tools on the configuration dialog box. The documentation on the website says to select "TestRunner"!. Is this correct? How can I run tests with code coverge inside of VSTS and from MSBuild? What link type do I specify?

Thanks
asked by craigtm (1.7k points)

1 Answer

0 votes
Hi,
Visual Studio 2005 Code Coverage is linked automatically.
(There is a typo in the help files)

1. Select a configuration with coverage enabled
2. Enable TypeMock.NET (Tools->Enable TypeMock.NET)
3. Rebuild the application (This is required to reset the test application that is running in the background)
4. Run your tests using Visual Studio.
answered by scott (32k points)
...