Questions tagged [clover]

Clover is a Java code coverage & test optimization application.

Clover is a Java code coverage and test optimization application developed by Atlassian. It is freely available to Non-profits and Open Source projects, but is also available for Commercial purchase.

Features of Clover include:

  • Test Optimization
  • Distributed Test Coverage Aggregation
  • Latest Run Coverage Reports which include:
    • Project Risks
    • Per-test Coverage
    • Project, Package, Class and Method-level coverage
  • Historical Coverage Reports
  • Test Results
    • Pass/Fail/Error per Test Class and Test
    • Coverage Contribution per Test
  • JIRA Dashboard using Clover Gadget
  • Java API Extensibility
213 questions
2
votes
2 answers

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 projects very well. Unfortunately, when it gets to the…
danny
  • 23
  • 3
  • 5
2
votes
1 answer

Configuring clover exclude file patterns

Greetings, I have clover 3.0 setup using ant, with the following file exclusions:
MeBigFatGuy
  • 28,272
  • 7
  • 61
  • 66
2
votes
4 answers

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 clover reports based on real users actions. I'm…
user68384
  • 31
  • 3
2
votes
0 answers

Package com_atlassian_clover is not visible

I am experimenting with java modules and unit tests. So I also have the clover plugin within my maven pom.xml: org.openclover clover-maven-plugin 4.2.0
PowerStat
  • 3,757
  • 8
  • 32
  • 57
2
votes
2 answers

Error "package com_atlassian_clover does not exist"

I am trying to use Clover to measure method code coverage for a Java project. I have installed clover-idea-4.3.1.jar (IntelliJ IDEA). The installation seems to have succeeded because all expected icons are on the toolbar. Next, I tried to get an…
krazyk4tlady
  • 389
  • 1
  • 5
  • 13
2
votes
0 answers

clover is using java version as 1.4 for some modules

clover is using java version as 1.4 for some modules and 1.8 for others. We have tried setting the version in clover-setup property (source="1.8"), in build.xml and other workarounds too but no luck. Although if I am putting the source as 1.8 in…
2
votes
1 answer

Twilio sending texts on android problems

am creating an android app for school which will need to send text messages. I have had twilio recommended by several people so I decided to go with it. Following this tutorial:…
lehmanj3
  • 23
  • 2
2
votes
1 answer

Surefire and OpenClover - Generate Clover report if tests fail

I am using the plugin maven-surefire-plugin version 2.20.1 and version 4.2.0 of the OpenClover plugin Surefire Setup org.apache.maven.plugins maven-surefire-plugin
Damien
  • 4,081
  • 12
  • 75
  • 126
2
votes
1 answer

Gradle Multiproject - OpenClover

I am trying to integrate Open Clover into my Gradle build process and was following the following guide: When I added it to my build.gradle - I got the following error: * * What went wrong: A problem occurred evaluating root project…
Damien
  • 4,081
  • 12
  • 75
  • 126
2
votes
1 answer

SonarQube isn't showing openclover coverage report

I'm having difficulties setting up openclover 4.2.0 to work with SonarQube 6.0. Here's what I have in logs: [INFO] [08:42:14.706] Sensor org.sonar.plugins.clover.CloverSensor [INFO] [08:42:14.707] 2/2 source files have been analyzed [INFO]…
Jala Barzo
  • 61
  • 7
2
votes
3 answers

Grails 3: gradle-clover-plugin integration

Has anyone had any success in integrating the gradle-clover-plugin with Grails 3? The closest I've got with build.gradle is: clover { additionalSourceDirs = [new File("src/main/groovy"), new File("grails-app")] as Set additionalTestDirs =…
Mark Thomas
  • 141
  • 1
  • 6
2
votes
2 answers

PHPUnit does not generate clover.xml report file

These are my configs: phpunit.xml
Chris West
  • 741
  • 13
  • 36
2
votes
1 answer

Globally exclude all Spring JavaConfig from Clover code coverage

I use Spring JavaConfig to define my Spring configuration. Since unit tests use a different Spring configuration than production code, the production configuration shows up as 100% uncovered when I use Clover code coverage with unit tests. I can use…
metacubed
  • 7,031
  • 6
  • 36
  • 65
2
votes
1 answer

Test Clover unpublished app(for Production environment) on clover dev machine or Android device

I have unpublished production app and I need to test "App notification" in clover's dev device or Android phone before publishing it. I have already tested in dev environment. Is there any way so I can test it before published Thanks in advance.
2
votes
2 answers

Clover instrumented tests with JUnit @Parameterized are failing with NoClassDefFound: junit/runner/TestRunListener

I managed to build our tests with help of this tutorial https://confluence.atlassian.com/display/CLOVER/Using+Clover+with+Maven+Tycho+Plugin, coverage data is generated, but there is one small problem: All tests that are being run with…