Clover is a Java code coverage & test optimization application.

learn more… | top users | synonyms

0
votes
0answers
9 views

Duplicate class error when both axistools and clover plugin are included in maven project

We have a maven project which uses clover and axistools-wsdl2java plugin. Platfrom is windows. We are using clover 2.4.0 plugin to get code coverage which integrated in project's pom.xml. Configured ...
1
vote
0answers
29 views

PHPUnit code coverage report in Clover XML format contains interfaces

I use the @codeCoverageIgnore annotation in order to ignore interfaces in code coverage reports. Some time ago I have used code coverage report in HTML format and I have not found any issues while I ...
2
votes
1answer
46 views

Maven runs unit tests twice with clover plugin

I have this plugin code in my pom.xml. If I remove this plugin then Maven won't run unit tests twice. I just wanted to know which part of this plugin makes the unit tests run twice. Thanks. ...
0
votes
1answer
115 views

Test Coverage in Jenkins for a Perl application

I just implemented an excellent example of test coverage in Perl described at Perl, Code Coverage Example But that required Module::Build , Now what if i have existing Perl Application which does NOT ...
0
votes
0answers
28 views

Should I specified the args in pom file to avoid Java heap space for CLOVER?

I have ran the mvn with clover to generate the clover report, but have found below: ERROR: java.lang.OutOfMemoryError flushing coverage for recorder D:\workspace\nu\clover\clover.dbb6cs_he5gw8qr: ...
0
votes
1answer
74 views

Free alternatives to Atlassian Clover?

Reasking my older question: Java test coverage: who covers what? Background: I look at sonar's coverage report for a class and want to know, which test contributes to the coverage of a specific ...
2
votes
2answers
119 views

What are the differences between the three methods of code coverage analysis?

This sonar page basically lists the various methods employed by different code coverage analysis tools: Source code instrumentation(Used by Clover) Offline byte code instrumentation(Used by ...
0
votes
1answer
38 views

Can Endeca Integrator Studio export a script to perform ETL on a RHEL server without a GUI?

We are using a Java Endeca API to perform ETL on various datasources on our production servers. It appears that Oracle Endeca Integrator Studio (Clover ETL) has the ability to perform many of these ...
0
votes
1answer
53 views

Cloud I access builds directory from Jenkins/Hudson?

I use Jenkins to run Clover, I can see the HTML report on Jenkins' web GUI, but I also want to download clover.pdf. It's created under workspace directory (only newest version) and builds directory ...
0
votes
0answers
104 views

Eclipse Clover Plugin / Toggling Code Coverage Highlighting on Editor

I have recently been using Clover plugin for Eclipse and it's been incredibly useful. Perhaps the most useful part - the code coverage highlighting however is turning out to be incredibly annoying ...
0
votes
0answers
21 views

Clover Coverage Does not execute unset()

I recently started using Clover Coverage and PHPUnit. I noticed in my tests some lines of code are considered 'Not Executed' causing the class to not get a full 'Pass'. The main example I'm thinking ...
0
votes
0answers
56 views

Measure unit code coverage % for function/method on Cyclomatic Complexity?

Is there an approach to collect/report on unit test coverage based on a complexity ratio such as Cyclomatic Complexity on a method/function level? The reason/intent is to provide a measurable metric ...
0
votes
1answer
87 views

How to exclude files from Clover report with Jenkins clover plugin

Does anyone know how to exclude files or directories using the Jenkins Clover plugin? The report it is producing includes files under src/test which is causing the results to be skewed. btw. I'm ...
0
votes
0answers
19 views

Clover maxAggregatedStatements for maven plugin

I'm currently trying to configure some method exclusions in my projects sonar configuration (the methods being excluded are irrelevant to my question). I have clover configured through the maven ...
1
vote
1answer
29 views

CloverETL Graph Specific

I am uploading a xls file and .grf file. But my requirement is to check the numeric field of xls file and if is there any string presents I have to replace with 0. But It must have at run time. ...
1
vote
1answer
50 views

CloverETL / Zest / GEF

Which component was used to create the CLOVER ETL GUI? I have some possibilities: Zest Draw2D GEF I need to create a tool that a user can create a graph. Thanks
2
votes
0answers
134 views

Any coverage tool allows to ignore getters , setter, equals and hashcode?

We are currently using Cobertura but i can't figure out a way to exclude those methods. I tried Emma and clover as well which i couldn't find any way to do as well. Please , spare your "You should ...
4
votes
1answer
137 views

phpunit merge two or more clover.xml reports

I have several clover.xml reports of different extensions of a projects. I want to combine them into one clover.xml and then create it into a clover html. But i see no way with the phpunit classes ...
0
votes
1answer
141 views

Clover 3.1.7 does not support java 7 diamond

My Clover instrumentation fails with the error: > /path/to/MyClass.java:138:28:unexpected token: > On the line: return new HashSet<>(); This is despite executing clover ...
2
votes
1answer
61 views

Clover can't instrument UTF-8 source

I am setting up Clover in an existing project. It fails to instrument a line of source: if ((character != 'ö') && (character != 'ø') && (character != 'ü') With the error: > ...
0
votes
0answers
45 views

Maven Clover: mvn clover:optimize clover:snapshot

I'm trying to optimize my maven build cycle with clover. I want to eventually use clover to instrument my code so 'mvn test' will just run tests related to classes that have changed. But for my first ...
0
votes
0answers
82 views

code coverage for a jar using clover

I am using clover to find the code coverage. I could easily do it for native java code by adding a plugin into intelliJ. But i am clueless about finding the code coverage for a jar file. Can ...
1
vote
1answer
109 views

clover: how does it work?

I am evaluating clover currently and wonder how to use it best. First I'd like to understand how it works conceptually. 1) What does instrumentation mean? Are the test-calls attached to ...
0
votes
1answer
89 views

Clover and Bamboo Purging old Builds

Does anyone know how I can configure bamboo to purge it's old builds. I have clover running and my server has just run out of space. I have discovered that for each build the clover directory is about ...
2
votes
1answer
344 views

Code coverage for Java: dead or paid?

I'm looking for an answer on code coverage tools. I know variations on this question have been asked before: Code coverage tools in Java What is your favourite code coverage tool(s)? (Free and ...
0
votes
0answers
199 views

Configuring Clover in Jenkins for PHPUnit Selenium tests

I am attempting to get PHPUnit to collect code coverage information from Selenium tests as per the docs. I've copied phpunit_coverage.php to the relevant location, added the append and prepend files ...
1
vote
1answer
133 views

How to hook PMD + Clover in Hudson build using maven?

we have newly set-up up a Hudson (yes.. Hudson, not Jenkins) CI. The job scheduled in Hudson does the following a. Connects to IBM ClearCase repository to download the latest source code b. ...
0
votes
1answer
744 views

What is the best android code coverage tool?

What is the best tool of evaluating android code coverage? It would be better if it works with jenkins.
2
votes
1answer
644 views

Clover PHPUnit coverage report is including coverage for unwanted file

I have just set up CloverPHP into my Jenkins job. I am using PHPUnit to generate the clover report and it seems to all be working apart from the coverage report which is showing the file ...
4
votes
1answer
930 views

Sonar not picking up clover test results created by running maven in jenkins

I've been working on this all day and haven't been able to find a solution, so thought i'd turn to the stackoverflow community. I have a server setup with Jenkins (version 1.454). It's configured to ...
1
vote
0answers
197 views

Gradle fails build during clover analysis due to a caught exception in a unit test

I'm using Gradle to run Clover test coverage analysis for TestNG unit tests. I've discovered that if a method I'm testing catches/handles an exception the gradle build will fail due to a failed test - ...
0
votes
1answer
57 views

List of maven(3.1.0) clover plugin properties/goals

I can't seem to find the list of goals for maven 3.1.0. I was able to find a list for maven-1.x here - http://maven.apache.org/maven-1.x/plugins/clover/properties.html But where's the list for the ...
0
votes
1answer
175 views

Why doesn't Clover always report code coverage for my Java web app?

I am using clover code coverage for finding the code coverage. I have instrumented my code and placed it as dependency in my web project. Sometimes my clover db gets updated sometimes it does not. ...
2
votes
1answer
216 views

Switch to turn on/off Atlassian Clover in Maven

I am using Clover via Maven during every build. The majority of the time the code coverage does not change much so I now do not want to have it run every time. Clover slows down the compilation a lot. ...
3
votes
1answer
393 views

How can I exclude a methods (hashcode and equals) from the clover coverage report?

I would like to exclude hashCode and equals from clover report. Some configuration example would be nice.
1
vote
1answer
246 views

Compilation fails after Clover instrumentation of Java 7 try-with-resources

I am using a simple try-with-resources statement like the following: try (final CSVWriter w = new CSVWriter(new OutputStreamWriter(r.getOutputStream(), "UTF-8"));){ //do stuff...... } It ...
2
votes
1answer
151 views

Maven suddenly downloading maven-clover2-plugin

Yesterday, while compiling our web application using Maven, it started downloading the maven-clover2-plugin version 3.1.3-SNAPSHOT com.atlassian.maven.plugins:maven-clover2-plugin:3.1.3-SNAPSHOT ...
0
votes
1answer
37 views

Change clover target output dir (maven plugin)

Is there an option to change the directory where the maven clover plugin generates the html reports?
1
vote
0answers
320 views

How to adjust clover code coverage metric for jenkins?

This is the plugin I need some help for... http://wiki.hudson-ci.org/display/HUDSON/Clover+Plugin I'd like to know how I need to adjust the Coverage Metric Targets the right way. My code coverage is ...
0
votes
1answer
698 views

ANT clover and sonar

I have an ANT build with clover and sonar targets, the sample command is ant clover.all sonar_all Currently i use the <clover-setup initstring="${clover.db.file}"> <fileset ...
2
votes
1answer
540 views

How to exclude code from the Clover coverage report?

Is there any way to hide classes or methods from being included in the Clover code coverage report? We have some proof of concept code along side production quality code in the same directories. ...
2
votes
2answers
369 views

Clover - getting coverage without automated tests

I am currently exploring various code coverage tools for use in project and short listed on clover amongst clover, Emma and cobertura. ( My org is ready to pay for clover and its nice ) But we donot ...
2
votes
1answer
570 views

PHPUnit HTML and Clover coverage reports differ due to codeCoverageIgnore

I'm using PHPUnit 3.5.14 and have a suite of tests which covers 100% of my PHP application excluding certain portions with // @codeCoverageIgnore[Start|End]. The HTML coverage report shows 100% ...
1
vote
1answer
661 views

Clover Java heap space error

I am getting java heap space error while running from hudson and I set my MAVEN_OPTS as below, any body can let me know what is the resolution for this issue. -Xmx4096m -XX:PermSize=3000m ...
1
vote
1answer
171 views

/tmp files filling up with surefires files

When Jenkins invokes maven build, /tmp fills with 100s of surefire839014140451157473tmp, how to explicitly redirect to another directory during the build. For clover build it fills with 100s of ...
1
vote
0answers
198 views

Is there a file size limit of the clover db at 2GB?

We have 3 clover dbs, one for clienttests, integrationtests and unittests. For calculating the total coverage, we merge those databases into a new clover db: As you can see, this works as expected ...
11
votes
1answer
686 views

Performing code coverage using Clover on a Play! Framework Application using Ant

I'm writing an Ant script to do some additional checks on my Play! Framework Application. Currently, I am executing my tests from my Ant script by simply making an exec call to "play auto-test". ...
2
votes
1answer
733 views

maven Embedded error: No such archiver

I am completely new to maven. I am trying to do a coverage analysis of the test in robocode. For that I am using clover (trial license) since emma doesn't seem to able to handle multi-module ...
3
votes
1answer
175 views

clover not picking up certain objects

I noticed clover is not picking up results for 1 particular class that I have. Its a domain object that has 3 overloaded constructors. It shows up in the clover reports as having 0% coverage. I even ...
1
vote
1answer
1k views

Configuring clover exclude file patterns

Greetings, I have clover 3.0 setup using ant, with the following file exclusions: <clover-setup initString="${clover.initstring}" flushpolicy="threaded" flushinterval="30000"> ...

1 2