dotCover is a tool that analyzes code coverage of .NET and Silverlight applications inside Visual Studio or on a Continuous Integration server.
0
votes
0answers
9 views
TeamCity + vstest.console.exe + dotCover integration
TeamCity supports testing using MSTest and computing code coverage with dotCover; this is even integrated into the default TeamCity install. However, Visual Studio 2012 uses vstest ...
1
vote
1answer
20 views
Comparing two dotCover coverage reports to find intersection?
I've got a bunch of C# code that's covered by both unit tests and system tests. I'd like to find those parts of the code that are covered by both, by only the unit tests and by only the system tests.
...
6
votes
0answers
153 views
DotCover in TeamCity 8 doesn't work
I try to run dotCover with my NUnit tests, in the TeamCity 8 as a build step. But no metter what I try I always get the same error in the log file:
Step 4/4: Coverage (NUnit) (1s)
[Step 4/4] ...
0
votes
1answer
66 views
DotCover shows only unit test source code not production code
I'm starting to use dotCover. I have a set of Debug compiled dlls + their pdbs. Then I've created a test project and executed resharper on it to see the coverage. What I'm getting is the coverage only ...
0
votes
1answer
64 views
Team City Code Coverage includes excluded code in total
We have this issue with the Code Coverage in Team City (using dotCover).
In the the coverage of statements, the percentage is calculated as covered/Total.
Which is good.
When we exclude neamespaces ...
1
vote
1answer
101 views
How to exclude xunit test assemblies from Jetbrains dotCover coverage report running from command line
I'm running my CI build on TeamCity and I'm trying to get my coverage report to exclude my test dlls. Here's my exec command formatted for readability.
I've installed xUnit contrib dlls for dotCover ...
2
votes
2answers
140 views
Why does this dotCover rake task fail using these relative file paths?
I'm having some issues getting dotCover to work in an Albacore exec task using relative paths.
@xUnitRunnerPath = ...
0
votes
0answers
196 views
How are TFS 2012 code coverage code blocks defined?
I'm seeing a large discrepancy between code coverage metrics reported by TFS and Jetbrains DotCover. We have TFS 2012 Ultimate on our build server and I've enabled code coverage for our project. It's ...
0
votes
1answer
29 views
create coverage report from script
I use dotCover for code coverage, and it's good, but the results appear to be written in a proprietary format, which I cannot parse.
I want to create a script that analyses my .Net code base and ...
0
votes
1answer
27 views
How do I cover this method? Copy stream content to a second stream
I have the following method, it is an extension method and can be called by any Stream object.
The method should copy the exact content of a Stream into another Stream.
public static void CopyTo(this ...
0
votes
1answer
60 views
Access files built as “content” during unit test execution with dotCover
I am using JetBrains DotCover to execute and get code coverage for my tests and code.
My project has some files set to build as "Content". These are used from the test like so:
// Get executing ...
0
votes
1answer
312 views
ReSharper, dotCover 2.2 + xUnit
I'm attempting to run dotCover on an xunit unit test. No matter which test I attempt to cover, they all give me the same result:
Inconclusive: Test wasn't run
So no matter what, dotCover doesn't ...
0
votes
1answer
159 views
Running dotCover as part of an MSTest build step in TeamCity
I'm currently running dotCover as a part of my MSTest build step in TeamCity. I've configured MSTest to run the assembly files matched by **.Tests.dll, otherwise everything else has default settings.
...
0
votes
2answers
101 views
What constitutes full code coverage when I invoke dotCover from an MSTest build step in TeamCity?
What is considered 100% when I invoke dotCover from an MSTest build step in TeamCity? Is 100% all of the compiled code? Is it all the code for all the assemblies which the tests have touched? Is it ...
-1
votes
1answer
140 views
DotCover 2.1 vs NCover for CCNet
I am trying to decide which code coverage tool I want to use with my CruiseControl.NET continuous integration server. Which would be a better tool: DotCover 2.1 or NCover 4.0 ?
2
votes
0answers
89 views
Can I generate code coverage from deployments on azure?
We would like to be able to deploy our code to azure and then run integration/acceptance tests on the deployed instances to validate the functionality, as using the emulator does not always give ...
3
votes
1answer
478 views
TeamCity dotCover report path for Sonar
I'm trying to integrate the sonar analysis into by TeamCity build process. I have a NUnit build step which runs my unit tests and then runs dotCover for the coverage.
My next step is the ...
0
votes
0answers
316 views
NCover vs Opencover vs dotCover vs Partcoevr [closed]
Well, we are building a .Net and C# project and I was just wondering what tool should I consider for running code coverage analysis?
Key points would be scalability, reliability and performance.
Any ...
0
votes
1answer
187 views
How can I exclude namespaces in code coverage with Team City?
I am using Team City 7.1.1 (build 24074), and I would like to exclude some namespaces in code coverage.
I am using dotcover as code coverage tool.
I am using MSPec, Machine.Fakes and Rhino Mocks in ...
3
votes
1answer
266 views
Attribute filter syntax for code coverage in TeamCity
Anyone knows the syntax for excluding code from coverage in Teamcity? I am using the ExcludeFromCodeCoverageAttribute on certain methods and want those excluded. It works well in Visual Studio but I ...
1
vote
1answer
135 views
What is the correct syntax for attribute filters in the dotcover console runner
As of dotcover 2.0, Jetbrains has added support for attribute filters. This basically allows you to exclude any code marked with a certain filter from your coverage report. There is okay documentation ...
0
votes
1answer
80 views
Can I include uncovered assemblies in the DotCover statistics in TeamCity
I have a TeamCity 7.0 project that covers a solution with a number of output assemblies. The only assemblies that appear in the DotCover statistics are the ones that have at least one line of code ...
2
votes
1answer
271 views
Issue running code coverage with dotCover in release mode
Has anyone successfully run coverage reporting using dotCover (and ideally TeamCity) while targeting release mode in the application? Here's the error message I received (this configuration works in ...
1
vote
0answers
81 views
Visualize change in test coverage with dotCover and TeamCity
Is there any way to visualize the change in test code coverage in dotCover/TeamCity between two build? Today we are able to see the overall change from the previous build (e.g. 70% -> 70.1%), but ...
9
votes
1answer
285 views
Weird test coverage results for iterator block, why are these statements not executed?
I'm using dotCover to analyze code coverage of my unit tests, and I'm getting some strange results... I have an iterator method for which the coverage is not complete, but the statements that are not ...
1
vote
2answers
131 views
filtering a category in dotcover
I understand that you can filter projects, classes and methods but is it possible to filter a category in dotcover.
I am using nuit as my unit tester.
Please help!
Thanks
Pete
2
votes
2answers
178 views
run all tests that cover this method/class
One thing I repeatedly do after I made changes to a method is I quickly want to run all the tests that cover this method.
Do you know of a tool that gives me this very button/menu entry? run tests ...
1
vote
1answer
248 views
MsBuild Task for Jetbrains dotCover on CruiseControl.net
We're using CruiseControl.net and I'm trying to make the build fail if total test coverage calculated by JetBrains dotCover is lower than certain number X.
is there an MsBuild task for this? I can ...
0
votes
1answer
52 views
Dotcover and Lighthouse produce no report data
I am trying to produce test coverage reports using dotCover and lighthouse. The dotcover cover command creates a 15Mb .dcvr file, but running dotcover report over that file produces empty results:
...
1
vote
1answer
191 views
How to exclude a class constructor using a dotCover filter?
What should go in the "Function mask" field in dotCover's "Edit Coverage Filter" dialog? I've tried "Foo" and "Foo*" with no effect.
example:
public class Foo
{
public Foo(int x, int y)
{
...
1
vote
1answer
341 views
How can I fail a TeamCity build if dotCover doesn't report a high enough result?
I would like TeamCity to run my mSpec tests and report on the code covered by the tests.
I would also like TeamCity to report that a build has failed if code coverage in certain namespaces doesn't ...
1
vote
1answer
385 views
Code coverage for a class library using dotCover
I have a simple class library that gets tested with MSTest using VS 2010.
I installed the trial version of dotCover 1.2. with no ReSharper installed.
VS only has the menu items "Cover Startup ...
2
votes
3answers
558 views
Unit Test Coverage; Graphical Display
I have been tasked with introducing automated unit test coverage reporting to our CI build environment (we use Hudson and MSBuild). I have used dotCover to produce the coverage data across several ...
2
votes
1answer
176 views
How do I import a coverage report from dotcover to ndepend using teamcity?
We use teamcity for
Builds
Code coverage (using the built in dotCover)
Code analysis (using NDepend)
This works great separately.
But I cant figure out a slick way to get the coverage report ...
0
votes
1answer
314 views
Test Coverage with ReSharper, MSpec and dotCover
Consider this controller method from an ASP.Net MVC3 project:
Having run dotCover code coverage, the Details method has clearly been covered by a test, as indicated by the green highlighting ...
2
votes
1answer
374 views
Trouble configuring TeamCity and dotCover
Im trying to configure TeamCity 6.5 with inbuilt NUNIT and bundled dotCover. For reasons I do not understand dotCover Merge command fails, along with all subsequent commands with some non-zero exit ...
0
votes
1answer
458 views
How to exclude assemblies by mask *.Tests.dll from TeamCity coverage with dotCover?
I'm using a naming convention for my test assemblies:
AssemblyOne.Tests.dll
ProjectTwo.AssemblyTwo.Tests.dll
...
I'm trying to exclude the assemblies from coverage with the pattern in mstest ...
1
vote
1answer
301 views
Running a ranorex test(rxtst) file through dotcover
I need to find a way to automate some UI testing of .NET programs through ranorex and generate a summarized code coverage report in some form. I've been leaning towards using dotcover as the code ...
3
votes
2answers
424 views
dotCover excluded code still show up in report
I'm using Teamcity with NUnit and dotCover. In my configuration I exclude a specific namespace and its contained classes from dotCover coverage. This part is working fine, but when running the build, ...
2
votes
0answers
108 views
Error in dotcover statistics when running from Team City
We have a number of projects that build and run tests via Team City. For these projects code coverage is calculated using dotcover.
In some cases it counts the lines twice and therefore shows only ...
2
votes
1answer
265 views
DotCover Not giving coverage for refrenced DLL
i donwloaded the dotcover 1.1.1 for evaluation.
We use a automation framework to run regression test where application 'X' refrences application 'Y's DLL .
I need code coverage of application Y when i ...
1
vote
2answers
544 views
integrate dotCover with TFS
Is there a tutorial somehwere or can somebody explain how to integrate dotCover with TFS? I want to run dotCover (probably the console runner?) as part of the team build process and would like to ...
1
vote
1answer
450 views
Teamcity NUnit fails when using JetBrains dotCover
My build fails with this log:
[12:13:40]: Checking for changes
[12:13:41]: Clearing temporary directory: C:\TeamCity\buildAgent\temp\buildTmp
[12:13:41]: Checkout directory: ...
1
vote
2answers
389 views
How can I get the exit code of the covered executable from the DotCover console runner?
My organization is working on integrating DotCover's console runner (described here http://blogs.jetbrains.com/dotnet/2010/07/running-code-coverage-from-the-console-with-dotcover/ and here ...
0
votes
1answer
192 views
Can I specify multiple possible sources for a ccnet statistic?
I have some builds that use NCover for test coverage analysis, and some that use DotCover. I merge the NCover/DotCover summary report into the ccnet log, but the item that I need to pull out into the ...
25
votes
4answers
3k views
How do I exclude types and methods from being covered by dotCover in TeamCity 6?
I've got an existing C# 4 project which I've checked the test coverage for by using TestDriven.Net and the Visual Studio coverage feature, i.e. Test With -> Coverage from the context menu.
The ...
0
votes
1answer
284 views
TeamCity: how to attach dotcover to Rake build configuration?
I'm using Rake for my build process. I wanted to take advantage of included dotcover in TeamCity 6. I read tutorial from Hadi Hariri ...
3
votes
1answer
415 views
When using dotCover in a TeamCity build configuration, is there an environment variable for code coverage percentage?
When using TeamCity to manage .net projects, we like to use dotCover to evaluate our code coverage. In the past using NCover, there was a way to retrieve the code coverage percentage using an ...
16
votes
2answers
4k views
NCover vs dotCover
I'm configuring continuous integration enviroment with TeamCity and has to select some code coverage tool. The main candidates I'm selecting from are dotCover, partCover and NCover.
The only one ...
1
vote
1answer
438 views
Dotcover and StatLight
I'm trying to ultimately run a dotcover coverage report on my silverlight app from TeamCity.
However, I'm having trouble getting this working using the Console Runner. Has anyone managed to get ...

