opencover Questions
3
We are currently running an OpenCover session, which is running the nunit3.console.exe.
Our command line is the following:
"C:\Program Files (x86)\OpenCover\OpenCover.Console.exe" -output:"%CD%\o...
Ambrogino asked 31/1, 2017 at 8:25
3
Solved
I'm trying to add unit tests to this project: https://github.com/JimBobSquarePants/ImageProcessor
When running the unit tests, they take maybe 1 or 2 minutes to run (it's an image processing libra...
Gapeworm asked 6/10, 2014 at 10:35
1
I have a dotcover coverage report generated using dotcover.exe.
I want to integrate the report in Jenkins and show the coverage.
How can I generate a cobertura or openclover xml from it?
Ligetti asked 30/3, 2020 at 15:44
5
Solved
I'm a noob to using both OpenCover and ReportGenerator and I'm struggling a bit in understanding how to get them working. I'm using VS.NET 2012 'Professional' which means I don't have access to the...
Fahrenheit asked 16/5, 2013 at 15:23
2
Solved
I need guidance in generating code coverage report of Asp.net unit tests in azure build pipeline. My project is based on .Net Framework 4.6.
I am able to run all the unit tests using "visual studi...
Suspicious asked 9/6, 2019 at 15:52
2
To generate open cover report I have to make debugType as Full. I generate report on build server as I have to fail the build if the coverage doesn't reach a certain threshold.
The build is generat...
3
I'm using OpenCover to generate functional test coverage for a web application. These tests are fairly long running (3+ hours), so we've chopped them up into multiple tests that run in parallel. So...
Maculation asked 15/4, 2014 at 16:37
2
Solved
I am trying to use OpenCover for a calculator application, written in C#.
I have opened it in Visual Studio 2013 and installed the OpenCover and Report Generation packages using the package manager...
3
I am using the plugin code cover in visual studio 2015 community to know the code coverage of the code projects.
When I tried to use the plugin I received this error message: "pen cover not found....
Occupation asked 23/6, 2016 at 11:34
3
Solved
I'm currently changing things to our Sonar setup since Gallio isn't supported anymore by C# Ecosystem 3. I already successfully imported the unit test coverage by using OpenCover with following com...
Hard asked 23/10, 2014 at 19:24
3
Solved
I am trying to combine three unit testing projects (three different dlls) into one OpenCover report. Is it possible? I tried to look into filters but I don't see enough detail (examples) in the Ope...
Parian asked 25/3, 2014 at 16:35
1
Solved
I'm using OpenCover to generate test coverage reports for my projects, but it's not generating any data. Checking in my logs, it's showing "missing pdb" for the dlls in question, however the pdbs a...
3
Solved
I'm using OpenCover http://nuget.org/packages/opencover and have written the following batch file to run the unit tests and generate code coverage stats:
echo off
echo ***************************...
1
Solved
I used XSD.exe to automatically generate C# objects based on the XML schemas (.xsd files). I'm deserializing OpenCover output, but one of the partial classes didn't get generated correctly.
Here's...
Salyer asked 1/4, 2016 at 16:46
3
trying to run the open cover as below
opencover.console.exe -target:"C:\Users\rkapiset\Downloads\xunit-1.8\xunit.console.clr4.x86.exe" -targetargs:"""E:\Office\CRM\dotnet\1 - UI\EYC.CRM.UI.Tests...
Gile asked 24/7, 2011 at 7:52
1
Solved
I'm looking for way to get code coverage in Visual Studio 2015 Community edition. I wasn't able to find a free tool for VS2013, so wondering if anything new has happened in VS2015.
I'm currently u...
Planimetry asked 20/7, 2015 at 19:5
1
I cannot get the filter parameter in Open cover working, even if I try a very simple console app with tests. Here is the filter - I am running as adminstrator
This:
"C:\Users\Mojo\AppData\Local\A...
Kirschner asked 1/5, 2015 at 2:22
2
Solved
I've got a simple method that calculate the total from a collection.
public void MethodToTest(Collection<int> collection)
{
int sum = 0;
foreach (int value in collection)
{
sum += value;...
Caudell asked 30/9, 2014 at 21:38
2
How can I add filters to skip some of the classes in a namespace/assembly. For example: SYM.UI is the base assembly and i want to skip SYM.UI.ViewModels. Writing the below filter but it is includin...
Sevenup asked 26/7, 2011 at 12:10
2
Solved
I'm working on a .NET project that uses Jenkins as the CI server. The server is working as it's supposed to but now I'm trying to make it emit alerts in case of low code coverage.
The approach tha...
Lovell asked 11/9, 2012 at 12:37
1
Solved
In generating coverage reports with OpenCover (and then generating an HTML report with ReportGenerator) for an MSTest suite, I am trying to exclude framework generated classes. In particular, class...
Seineetmarne asked 17/9, 2012 at 20:1
1
Solved
I set up OpenCover in my MSBuild script, setup the ReportGenerator, and have it output as an artifact and have a custom tab - all of that works great. Here is my MSBuild target:
<Target Name="T...
Axle asked 21/8, 2012 at 16:9
2
Solved
I'm trying to integrate OpenCover with CruiseControl.NET. At this point I've modified by build system so it runs my nunit tests under OpenCover. I then generate Xml and Html reports from those usin...
Geis asked 9/11, 2011 at 19:23
1
Solved
I was trying to use OpenCover (downloaded today) to get coverage of my tests. Here is the command line I've used :
OpenCover.Console.exe -target:"c:\Programmes2\xunit\xunit.console.clr4.x86.exe" ...
1
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...
Unsophisticated asked 24/4, 2012 at 11:12
1 Next >
© 2022 - 2025 — McMap. All rights reserved.