Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you turn on Code Coverage in Builds within TFS?

I need to know how to turn on Code Coverage when running TFS builds on a solution with a .testrunconfig file.

There is an option in the testrunconfig file that is for code coverage, but when running a TFS build there is no code coverage results.

I am running my tests using the *Tests.dll mask and NOT using Test Lists (.vsmdi).

like image 909
Mr. Kraus Avatar asked Sep 17 '08 06:09

Mr. Kraus


2 Answers

How are you running the tests? Are you using a .vsmdi file or just specifying that you run all tests in *Tests.dll assemblies?

If it is the latter and you are using TFS 2008, then you need to add the following to the and of the first PropertyGroup in your TFSBuild.proj file for the build.

<RunConfigFile>$(SolutionRoot)\TestRunConfig.testrunconfig</RunConfigFile>

This points the build at your .testrunconfig so it can pick up the instructions to run code coverage.

like image 131
Martin Woodward Avatar answered Nov 07 '22 00:11

Martin Woodward


You'll need the RunConfigFile entry whether you use the .vsmdi file for Test Lists or just specify the assembly file pattern. In that .testrunconfig file you specify the assemblies you want to apply code coverage to.

like image 24
jlo Avatar answered Nov 07 '22 01:11

jlo