Tagged Questions
Cobertura is a free and open-source Java tool based on jcoverage that calculates the percentage of code and branches covered by tests.
17
votes
3answers
7k views
Exclude code from code coverage with Cobertura
Is there a way to exclude code from inclusion into Cobertura coverage reports? We have some methods that should not be include in the coverage report and therefore not drive down the coverage numbers.
...
11
votes
4answers
1k views
Testng, Emma, Cobertura, coverage and JDK 7 result in ClassFormatError and VerifyError
I have switched to the newest JDK 7 and I am having problems with running testng unit test on byte code that is fiddled by emma coverage tool. None of my test cases are run correctly and for most of ...
11
votes
1answer
1k views
Running integration tests with Cobertura Maven plugin
I am having trouble getting the Cobertura plugin to run integration tests in Maven. The closest answer to this question I have found is http://jira.codehaus.org/browse/MCOBERTURA-86. However, the ...
11
votes
4answers
4k views
running junits and cobertura with maven
In our project, we run both junits and cobertura using maven. The problem I am facing is that,
junit test cases are running twice, once before the jar creation process and then once again for ...
9
votes
6answers
5k views
Java code coverage in Hudson
I'm migrating a couple of projects from an ant build to a maven one. The build server is , and will remain, Hudson.
I've been having trouble recording code coverage in hudson with cobertura due to ...
9
votes
3answers
4k views
cobertura on maven multi module project
i have a maven project with 4 modules - 3 of them contain code and some tests (testing equals and hashcode of the classes) whereas the 4th module is for testing the 3 other modules.
Now i want to run ...
7
votes
1answer
467 views
how can I clear coverage highlighting in eclipse
After I ran a coverage report in Eclipse (using cobertura or Emma plugin) my source code files get highlighted in green and red and yellow depending on code covered by tests or not.
How can I clear ...
6
votes
3answers
1k views
Ignoring report generation for specific classes in cobertura maven plugin
Ive been using cobertura plugin for report generation and instrumentation, (with surefire).
Here is the issue I am facing.
I am unable to make the plugin ignore report generation for specific classes ...
6
votes
3answers
142 views
Measure Code Coverage only on New Code
We are looking for a creative way to measure code coverage on new code separate from existing code. We have a large legacy project and want to start getting 90+% coverage on any new functionality. ...
6
votes
3answers
1k views
double unit test reporting with hudson and maven
I have a maven2 project in hudson and when the cobertura reporting plugin runs, it causes the unit tests to show that they have run twice. I don't mind them running multiple times, but the trend graph ...
5
votes
5answers
980 views
Hudson “Source code is unavailable.”
I'm using Hudson to continuously build a Python project. Unit tests and code coverage work great, but this message appears when drilling into the Cobertura Coverage Report for my files that are not ...
5
votes
2answers
1k views
hudson cobertura reporting 0
I have a problem that when I run the cobertura target maven, the report always shows 0%.I've tried forking my junit tests, and no luck. I've tried configuring the cobertura plugin in the reporting ...
5
votes
5answers
978 views
Is there any way to automatically execute JUnit testcases once with all logging enabled and once with all logging disabled to increase code-coverage and find subtle bugs?
I've found a solution, see my own answer below. Does anyone have a more elegant one?
Assume the following class to be tested:
public class Foo {
private final Logger logger = ...
4
votes
1answer
322 views
Cobertura & Java 7 support
Any ideas when cobertura will support java 7?
Found http://sourceforge.net/tracker/index.php?func=detail&aid=3295711&group_id=130558&atid=720018
We preferred cobertura over emma and ...
4
votes
2answers
111 views
Java Code Coverage Ideas?
I am working on a Java project where I have an ant build, which runs JUnit tests, which are monitored by Cobertura. That works great and we have kept our coverage very high. For some classes, like ...
4
votes
1answer
134 views
unit testing slow with cobertura
I recently integrated cobertura into my ant build scripts and I am wondering if I did it correctly because it has significantly slowed down the time it takes to run the unit tests.
Here is a sample ...
4
votes
4answers
1k views
How do I get Emma or Cobertura, with Maven, to report coverage on source code in other modules?
I have a multi-module Maven setup with Java code.
My unit tests, in one of the modules, exercise code in multiple modules. Naturally, the modules have inter-dependencies, and code in all relevant ...
4
votes
1answer
550 views
Scala ,sbt and emma or Cobertura
I want to use code coverage in Scala project,Simple Build Tool used as a build tool.What is the best one to use in this project.(I'm new to these technologies).Any one can tell me how to configure ...
4
votes
3answers
359 views
Java : Which Code Coverage tool to use?
Here is what I want to do:
1) A running application has been instrumented. The byte code is clean - means that the tracing info should be added on the byte code level.
2) The running application ...
4
votes
3answers
4k views
How to generate Cobertura Code Coverage Report using Maven from Hudson
In my project I need to create Cobertura Code Coverage report from Hudson using maven build.
In Hudson I have added the Cobertura Code Coverage plugin.
I need the complete modification steps of ...
4
votes
2answers
2k views
How to get Cobertura to fail M2 build for low code coverage
I'm trying to configure my WAR project build to fail if the line or branch coverage is below given thresholds. I've been using the configuration provided on page 455 of the excellent book Java Power ...
3
votes
1answer
45 views
How do I troubleshoot “failing” Hudson builds?
I have a job which runs successfully as a maven build, but fails when run in Hudson.
The regular output shows BUILD SUCCESSFUL but the build is marked as failed (red ball) and Cobertura reporting is ...
3
votes
2answers
87 views
Code coverage / branch coverage recommended values
I'm using Cobertura to calculate code/branch coverage for a Java project with JUnit test cases. I know 100% coverage does not tell how good the code is, but at the moment it's 6%. Branch coverage is ...
3
votes
1answer
200 views
eCobertura not working correctly in Eclipse
So I'm trying to test out my coverage for a Java Application in Eclipse. I installed eCobertura from the "Install new Software" dialog and successfully installed. But when eclipse starts up it throws ...
3
votes
2answers
98 views
How to specify a global system property for java applications?
I'm trying to integrate Cobertura into our test environment to be able to capture code coverage information. The tests are run from ant scripts using ANT junit tasks, and there are more than 50 ant ...
3
votes
2answers
241 views
exclude a method/branch from instrumentation cobertura
I need to skip certain methods or code segments from instrumentation and code coverage. That lead me to Exclude code from code coverage with Cobertura.
Then the cobertura ant page
...
3
votes
1answer
313 views
cobertura - Annotation to ignoring files in instrumentation
We use cobertura to measure code coverage in unit testing and integrated/system testing.
Some classes are more note suitable for getting a coverage in plain unit test. (Some require database, GUI ...
3
votes
0answers
633 views
Maven - Tweaking the phase where to run a plugin declared in the reporting section
I am trying to tweak the phase when a maven plugin execution will run in maven-2.
My specific issue is with attempting to run the cobertura:instrument step bound to the lifecycle phase ...
3
votes
1answer
67 views
grails test-app -xml -coverage attempts to resolve XML URIs and times out
I'm behind a proxy, and I need grails test-app -xml -coverage to NOT resolve whatever XML field it's trying to resolve and not connect to the internet.
Any idea how to get this working? I need the ...
3
votes
4answers
379 views
Cobertura coverage and the assert keyword
My line coverage for unit tests measured by Cobertura is suffering, because I have assert statements which are not covered in tests. Should I be testing assertions, and is there any way to get ...
3
votes
1answer
801 views
Exclude specific methods from code coverage from cobertura?
I was trying to ignore all the toString() methods from instrumentation using following configuration. This wasn't really working? This is using cobertura as maven plugin. This was based on a previous ...
3
votes
2answers
698 views
Configure cobertura to ignore certain blocks of code
Is it possible using Cobertura to tell it to ignore certain bits of code that are identified by start and end comments?
For example,
public class Foo {
public void static doSomething() {
...
3
votes
2answers
2k views
Maven Cobertura OutOfMemoryError
I am using Maven site:run to generate a cobertura code coverage...
The following is my pom.xml configuration for cobertura:
<reporting>
...
<plugins>
<plugin>
...
3
votes
6answers
5k views
Generating a maven site including a Cobertura Report
I've got some projects that are already doing site generation via maven, and I want to integrate cobertura reports in them, but no maven goal I seem to run will generate a local preview for me to look ...
2
votes
2answers
25 views
Can I get a unit test coverage report specificly for a user story?
We are using cobertura to show our unit test coverage, we have only just started using it (Im new to running this team) and our current unit test coverage is very low, rather than just go in and find ...
2
votes
1answer
39 views
Cobertura report has 100% coverage anywhere
I'm running my webApp using Jetty with my instrumented classes.
After the shutdown of Jetty i'm taking the generated .set file and creating a cobertura report using the command line tool.
I always ...
2
votes
2answers
70 views
Code coverage going down significantly after hibernate upgrade - getters and setters not covered - any ideas?
We have recently upgraded our code base from a 2005 version to the latest version of hibernate.
As a result of that, we're seeing significantly reduced code coverage in a number of our packages. ...
2
votes
2answers
190 views
Cobertura custom filters
I'm using Cobertura in a Jenkins/Hudson server script.
I'd like to ignore certain kinds of methods/constructors from code coverage. For instance default constructors which are required to exist for ...
2
votes
2answers
494 views
Cobertura on Tomcat
I'm trying to apply code coverage using Cobertura. The app is
deployed in Tomcat 5, but when I instrument the .class files, the
app stops working.
This are my steps:
Compile the app (This run in ...
2
votes
5answers
1k views
cobertura vs clover
We are thinkig about utilizing one of these tools in our development procedure. Our environment extensively use mvn and eclipse.
Which one in your opinion is better utility for checking test ...
2
votes
2answers
1k views
Cobertura with Ant Script : xml/html coverage report always show 0% coverage everywhere
I tried to get Cobertura running inside my ant script. All is successfull (source code building, junit tests, cobertura reports (xml / html); but in html reports, the code coverage is always at 0% ...
...
2
votes
2answers
653 views
Maven cobertura plugin - one report for multimodule project
I'm using maven cobertura plugin to report code coverage in my multimodule project.
The problem is that I don't know how to generate one report for all modules in project.
So far I have generated ...
2
votes
2answers
200 views
How to avoid double compilation and testing with cobertura:check?
I'm using maven-cobertura-plugin in order to calculate code coverage in my project. As I understand, this plugin starts a new/forked build cycle in order to compile and test the code base. When it's ...
2
votes
2answers
940 views
emma not generating reports but cobertura does?
basic reason to put the comparison question between these 2 is I am able to generate the reports in site directory(for cobertura) after putting the following plug in information in build section of my ...
2
votes
3answers
2k views
How to instrument a multiproject Maven 2 with Cobertura?
My Maven 2 project consists of several sub-modules. It s structured containing and EJB, WAR and Jar sub modules.. Now i want to instrument the packaged EAR that contains all submodules as mentioned.
...
2
votes
2answers
2k views
maven cobertura reports 0% with aspectj
Has anyone been able to use maven2 with the Aspectj plugin, and Cobertura plugin? I keep getting 0% coverage, when I should get something. Cobertura instrumentation is running before Aspectj weaving ...
2
votes
3answers
1k views
cobertura graph in hudson
is there a way to have the cobertura test coverage graph be shown on the front page of a project, similar to the test trend graph? I'd like to have that displayed next to the coverage graph. Any help ...
1
vote
2answers
31 views
Maven Cobertura plugin won't read parameters
When calling the Maven goal
cobertura:clean -DforceMojoExecution=true -X
from within Eclipse on my project, the forceMojoExecution won't be applied.
The debug log contains the following line:
...
1
vote
0answers
20 views
Cobertura does not 0 against an uncovered line [closed]
I was trying to replicate a problem of false code coverage with our code.
In an attempt, I started playing with the basic example packaged along with the cobertura.
Can some one explain why the ...
1
vote
0answers
39 views
Groovy Task in Ant Script to Customize Cobertura?
I am trying to customize the behavior of Cobertura for code coverage.. By default Cobertura instruments all the classes in the build but I want to read a particular xml which typically looks like :
...