Tagged Questions
Clover is a Java code coverage & test optimization application.
10
votes
1answer
383 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".
...
4
votes
3answers
358 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 ...
3
votes
1answer
116 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 ...
3
votes
1answer
157 views
Changing location of Clover instrumented classes
I'm using Clover 2.5 and I've got a target that will package up the binary files. However, at the moment, it seems that the Clover instrumented classes are being generated in the same output ...
3
votes
1answer
631 views
phpunit clover from some particular directories, not full clover. Is it possible?
Why do I need this? I'm running the tests on symfony project (and using Zend fw) and phpunit generates clover for all affected files. But I don't want see coverage for symfony and Zend libs (and all ...
3
votes
2answers
621 views
Clover+Maven+Eclipse
I am using eclipse + maven2 to build my applications.
I need to start working with clover.
My question is therefore: from your experience, what is the best way to combine these 3.
I mean, I know ...
3
votes
1answer
100 views
How can I provide feedback to my team about changes included in a build and their impact on risk?
Is this something you do already or do you know of a good tool?
GOAL: Help team understand how recent source changes impact risk so they know where to focus testing efforts. Provide data over time ...
2
votes
1answer
248 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 ...
2
votes
0answers
246 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 ...
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
5answers
679 views
Clover on Java EE Container
I would like to run Atlassian Clover in a production environment (I don't have an issue with overhead ). Does anyone have experience with this, or can you direct me how to do it?
My goal is to get ...
1
vote
1answer
20 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. ...
1
vote
1answer
59 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
48 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
...
1
vote
2answers
96 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 ...
1
vote
1answer
164 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
48 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
75 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 ...
1
vote
1answer
296 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
vote
1answer
228 views
PHPUnit - PHP_Token_Stream error on clover-coverage
I am using PHPUnit 3.5.10, and having a problem trying to generate xml reports for clover-coverage.
Exporting with coverage-html works fine. Also, if I exclude enough files from the coverage report ...
1
vote
1answer
213 views
Using a Clover <fileset> on Hudson
We're trying to limit Clover to a certain package and therefore have a <fileset> definition in our Ant build file. Everything works fine from the command line (when we specify our known Ant ...
1
vote
1answer
147 views
Clover + Tomcat
Has any of you managed to generate Clover reports successfully for web-apps on Tomcat or any other web server?
0
votes
1answer
19 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. ...
0
votes
0answers
25 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 ...
0
votes
0answers
39 views
Bonfire or Clover (for QA team)?
I'm searching a tool where we can put all our software tests, link the test with previously created issues... The same kind of tool as QAComplete.
We already use JIRA as issue tracking system and ...
0
votes
1answer
13 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?
0
votes
0answers
89 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
0answers
40 views
bamboo dependent ANT builds : reusing clover artifacts by a child sonar task?
I'd like to know is it possible to configure bamboo dependent builds such that the child build can reference and reuse artifacts generated by the first?
In my case the parent ANT build will compile ...
0
votes
1answer
154 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 ...
0
votes
0answers
32 views
Groovy per-test instrumentation with Clover
I am using the Clover Ant tasks (version 3.1) to create code coverage for Groovy and Java files. For Groovy files I do not see any per-test coverage in my HTML report. For Java classes this works ...
0
votes
1answer
98 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. ...
0
votes
1answer
50 views
Displaying Clover Historical Trend in Hudson
Right now, my Hudson job runs Clover to carry out it's code coverage analysis.
I'd like to be able to display the Clover historical trend graph as part of the job - like Hudson displays the Unit ...
0
votes
1answer
140 views
Hudson and Clover Plugin
We are using the Clover plugin on Hudson.
Is it possible to set a property on hudson to exclude certain files / packages from being analyzed by clover?
I was looking at the project documentation but ...
0
votes
3answers
273 views
Compiler warnings plugin: Fileset excludes
We are using Hudson as our build machine and I am trying to configure the excludes fileset for the Compilier Warnings plugin. Hudson parses the build log to determine warnings/errors and our Clover ...
0
votes
1answer
278 views
Need help resolving Clover issue
Forgive me if the question is too vague. I am not a clover expert but i need this issue resolved. Clover seem to be having issues with a particular class as show in the trace below. I need to exclude ...
0
votes
1answer
1k views
How can I exclude a package from the clover coverage report (running from Maven)?
I'm generating clover coverage reports (using Clover's maven plugin), and I'd like to exclude a certain package from the coverage reports (specifically, because it's UI code that intentionally isn't ...
0
votes
2answers
722 views
Clover coverage with Phing
Is there a way to get Phing to output it's coverage report in clover format?
I know phpunit has --coverage-clover but I don't know how to enable this option from Phing.
I do not want to manually use ...
0
votes
1answer
366 views
Clover web apps during runtime
Hello I am a Java web app developer
I have a problem, I would like to make clover collect data during runtime for my web applications.
I did manage to do so for a single application by adding a ...