vote up 6 vote down star
4

I want to try PartCover for code coverage. I'm running Visual Studio 2008 Professional with MSTest. The Professional Edition does not include the Team Testing tools, like Code Coverage.

So, I'm trying PartCover, but I can't get it to work. In the PartCover.Browser I've selected the MSTest executable, I've pointed the working arguments to my tests.dll, and I've tried pointing my Working Directory to the TestResults folder, but I get an error:

"Report is empty. Check settings and run target again."

I don't know what to try next.

Edit

It turns out I had two problems. First, I wasn't putting my Rules right. Second, I had spaces in my working arguments. The spaces were giving an error, but not showing up anywhere.

flag

4 Answers

vote up 11 vote down check

Yep, I had this problem too. Check out the format for the Rules field.

In the browser add something like:

+[MyNamespace.MyAssemblyName]*

Where the assembly name you specify is the name of the assembly containing the types you want coverage for. Start off with:

+[*]*

and partcover will happily give you coverage metrics for the unit test project, any libraries you reference and on and on.

From the command line you specify the same pattern in the --include argument: --include=[MyNamespace.MyAssembly]*

You can also exclude contained namespaces or types or restrict which types from within the namespace you get coverage data for in the report. The format for the rules is a subset of regular expression syntax according to the manual (consisting of asterix as a wildcard and characters that make up assembly and class names, so pretty limited but enough to get the data you want). Check out the section on rules in the manual. If you don't have the manual, download it from sourceforge.

link|flag
PartCover is far too cumbersome to set up. It may be free but it's a giant headache compared nCover - particularly in Testdriven .NET. – Damien Aug 22 at 3:17
3  
I'd dispute that - PartCover.exe --target YourProgram.exe is pretty easy to do. – JBRWilkinson Sep 15 at 12:03
@Damien- hardly a major headache. I just found Hamish answer to the bit I got stuck on and 10 seconds later it is working with NUnit. – RichardOD Nov 20 at 16:30
vote up 0 vote down

I have trouble finishing the tests and hopefully someone can help. Same error as above but with a different twist. ["Report is empty. Check settings and run target again."]

The command line just freezes everything up. I am not using NUnit in my project, just the Visual Studio Testing tool.

50/58 test(s) Passed, 7 Failed, 1 Error

Summary

Test Run Error. Passed 50 Failed 7 Error 1


Total 58 Results file: D:\projects\MySoftwareProject\Web.Test\TestResults\LLTLP 2009-03-19 12_22_25.trx Run Configuration: Default Run Configuration

Run has the following issue(s): Warning: Test Run deployment issue: The assembly or module 'nunit.framework' dir ectly or indirectly referenced by the test container 'd:\projects\mysoftwareproject\web.test\bin\debug\mysoftwareproject.test.dll' was not found.

What's next?

The rules: +[MySoftwareProject]* -[MySoftwareProject.Test]* -[nunit*]* -[MySoftwareProject.Test.WatinTests*]*

Thanks in advance! -rob

link|flag
Rob, it's not considered good form to post further questions as answers. You would have better luck posting this as a separate question. – Hamish Smith Aug 3 at 3:24
vote up 0 vote down

I had similar issues with my code not showing up in the report when using PartCover version 2.3.0.18745. Using version 2.2.0.34631 solved the problem.

link|flag
vote up 1 vote down

I had to go through a number of steps to finally get PartCover working when calling it from a NAnt script. I collected everything I had to do here for others' convenience; note that some of this was already answered by others but I spent tons of time putting it all together.

First, as is answered elsewhere here, if your OS is 64-bit, you'll need to run [most recent Windows SDK]\bin\CorFlags.exe [PartCover install dir]\PartCover.exe /32BIT+ /Force

This is a one-time step, after PartCover install. It will change the executable, and warn you that the assembly will need to be re-signed, but I did not do that and it (eventually) worked fine. Note that even though it looks like CorFlags didn't do what you asked and warned you about signing, it did change the .exe, it just does not point that out explicitly.

Next, again if your OS is 64-bit, and you use NUnit (or another test exe) with PartCover, you will need to invoke a version explicitly compiled for x86. In NUnit's case, that would be nunit-console-x86.exe. Calling nunit-console.exe would just hang indefinitely for me after doing the work, and not return to a prompt.

Next, as is also answered elsewhere here, PartCover 2.3, a dev build, was failing silently even after running CorFlags on it. However, 2.2 worked.

Next, when PartCover.exe is invoked, the syntax for arguments is -- arg-name ... and NOT --=arg-name (i.e. dash dash space arg name, not dash dash equals arg name); the PartCover docs seem to go both ways but equal sign just did not work for me.

After the above, PartCover was finally working from the command line. I used a settings file (you can use the PartCover browser UI app to save a settings file, which you can then use from the command line), so that the only args I specified were the settings file full path, and the output report file name full path.

This still wasn't working when invoked from a NAnt script, so I finally realized that the arg values had to be quoted... and to use the HTML encoded tokens for quotes. Thus...

NAnt excerpt:

<property name="PartCoverExePath" value="c:\Program Files (x86)\PartCover .NET 2\PartCover.exe" />
<property name="PartCoverWorkPath" value="c:\Projects\MyProject\trunk\CI\" />
<property name="PartCoverSettingsFileName" value="PartCover.Settings.xml" />
<property name="PartCoverReportFileName" value="PartCover.Report.xml" />

<target name="MyTarget">
<exec program="${PartCoverExePath}">
<arg value="--settings &quot;${PartCoverWorkPath}${PartCoverSettingsFileName}&quot;" />
<arg value="--output &quot;${PartCoverWorkPath}${PartCoverReportFileName}&quot;" />
</exec>
</target>

And the PartCover settings file:

<PartCoverSettings>
<Target>C:\CI\Binaries\NUnit2.5.2\bin\net-2.0\nunit-console-x86.exe</Target>
<TargetWorkDir>c:\Projects\MyProject\trunk\MyProject.Test\bin\Debug</TargetWorkDir>
<TargetArgs>MyProject.Test.dll</TargetArgs>
<Rule>+[*]*</Rule>
<Rule>-[log4net*]*</Rule>
<Rule>-[nunit*]*</Rule>
<Rule>-[MyProject.Test*]*</Rule>
</PartCoverSettings>

Phew! Hopefully this will save someone else the headaches I had.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.