I've successfully covered a Silverlight application from within Visual Studio 2010. I saved a snapshot file (.dcvr extension). This seems to be a binary file. Can I somehow convert this .dcvr file into a XML file, allowing me to process it further?
Hi Andreas, Next minor release of dotCover will contain option to generate reports from VS. Currently you can use console runner for this purpose, but it is a bit tricky.
First you need to create "coverage result" xml (let's say c:\temp\coverage-result.xml) with the following content:
Hello Ralf,
In dotCover 1.0 this is not possible, but we're going to get closer to silverlight tests in the next versions.
Here are the issues for AgUnit & White frameworks support:
http://youtrack.jetbrains.net/issue/DCVR-1395
http://youtrack.jetbrains.net/issue/DCVR-1347
And I've filed a new one for silverlight coverage from command line:
http://youtrack.jetbrains.net/issue/DCVR-2290
Please feel free to comment/vote/add new issues to our tracker.
Hi,
I've successfully covered a Silverlight application from within Visual Studio 2010. I saved a snapshot file (.dcvr extension). This seems to be a binary file. Can I somehow convert this .dcvr file into a XML file, allowing me to process it further?
Regards,
Andreas
Hi Andreas,
Next minor release of dotCover will contain option to generate reports from VS.
Currently you can use console runner for this purpose, but it is a bit tricky.
First you need to create "coverage result" xml (let's say c:\temp\coverage-result.xml) with the following content:
Next you'll need a report configuration xml (e.g. c:\temp\report-configuration.xml)
Finally execute console runner with the following command line:
Great, thanks!