Skip to main content

Maven : Create JaCoCo Code Coverage Report

Introduction

In this tutorial we will see how to setup the JaCoCo plugin to generate a code coverage report for a Maven project.

In order to generate a unit test coverage report, we should have sufficient unit test cases in our application. For this tutorial, I am referring to a Maven project which has a string manipulation method.

You can find this project at this GitHub location.

There are a few steps that need to be taken to produce the report.

Install the Maven JaCoCo plugin.

Insert the following code into pom.xml.

<plugin>
    <groupId>org.jacoco</groupId>
    <artifactId>jacoco-maven-plugin</artifactId>
    <version>0.8.2</version>
    <executions>
        <execution>
            <goals>
                <goal>prepare-agent</goal>
            </goals>
        </execution>
        <execution>
            <id>report</id>
            <phase>test</phase>
            <goals>
                <goal>report</goal>
            </goals>
        </execution>
    </executions>
</plugin>


Add a Unit Test

Create a class as "StringUtil.java" and add following snippet

package com.zainabed.tutorials;

public class StringUtil {

    public int findIntegerCount(String input) {
        
        if (input == null) {
            return 0;
        }
        
        int count = 0;
        for (int index = 0; index < input.length(); index++) {
            char character = input.charAt(index);
            if (character >= 48 && character <= 57) {
                count++;
            }
        }
        
        return count;
    }
}


Next, create a unit test class for above class as "StringUtilTest.java".

package com.zainabed.tutorials;

import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;


class StringUtilTest {

    @Test
    void should_return_count_of_numeric_value() {
        StringUtil stringUtil = new StringUtil();
        String input = "1name34sample;";
        assertEquals(3, stringUtil.findIntegerCount(input));

        input = "namesample";
        assertEquals(0, stringUtil.findIntegerCount(input));
    }
}


Now execute the maven build. It will generate the code coverage report.

mvn clean install


Code coverage result


You can configure different goals of the JaCoCo plugin, such as restricting code coverage percentage.

Our application has 75% branch coverage so far. Let's use the following snippet to configure the coverage limit by setting the execution configuration of the JaCoCo plugin and setting the value to 80%.


<execution>
	<id>coverage-check</id>
	<phase>test</phase>
	<goals>
	    <goal>check</goal>
	</goals>
	<configuration>
	    <rules>
		<rule>
		    <element>CLASS</element>
		    <limits>
		        <limit>
		            <counter>BRANCH</counter>
		            <value>COVEREDRATIO</value>
		            <minimum>80%</minimum>
		        </limit>
		    </limits>
		</rule>
	    </rules>
	</configuration>
</execution>


Now with this configuration build will fail.



We can make the build pass by improving the branch code coverage. Let us update the unit test as follows.

 @Test
    void should_return_zero_for_empty_string() {
        StringUtil stringUtil = new StringUtil();
        assertEquals(0, stringUtil.findIntegerCount(null));
    }


Build the application again

mvn clean install



The report will show the following result.



Conclusion

Code coverage is a useful asset to improve unit testing of applications and JaCoCo facilitates it efficiently.

Comments

Subscribe for latest tutorial updates

* indicates required

Popular posts from this blog

AJAX - How To Retrieve JSON Response from PHP script

Hello Friends, This is my first tutorial post. Today I'll explain you how to retrieve JSON response via Ajax call. First we build a PHP script to send response in JSON format, then we will gather this response from an Ajax call through jQuery script. Let’s first create a PHP script  Create a PHP script, I’ll name it as “json_response.php” And add following code in it json_response.php <?php //set header for JSON response header("Content-Type: application/json"); //render array in JSON format echo json_encode(array('status' => 200, 'message' => 'Response from PHP script in JSON format.')); This is a basic example to send JSON response. PHP script will send response with status code and message. Now create a HTML file to fetch JSON response and add it in header tag. Create a HTML file, I’ll name it as “json_response.html” And add following code. json_response.html <html>           ...

JSON Tutorials : Getting Started

JSON is widely accepted text formatted structured data. JSON stands for " JavaScript Object Notation ". In general JSON can represent 1. Object of database record. 2. Object to represent a list of HTML elements. 3. Result of search query. 4. Response of an Ajax call. Here you can see JSON is used in many different areas and for many different scenarios. This means it has simple data structure. most of programming languages adopt it and it can flow easily from one connection to another. You can find JSON office definition here JSON Official Site . JSON is represented by two structural types, which includes two primitive types. Structural types Array : A sequential list of primitive data types between square brackets [ ] Object : Collection of key, value pair stored inside curly braces { }, where value would be primitive data type Primitive types : There are two primitive types key and value. " key " should be string and " value (data type)...

Twig Tutorials: Install and Configure

In this tutorial, we'll look at how to install Twig within your PHP project and thereafter configure it so that we can create and use a Twig template inside our PHP web application. Later on, we'll see a simple Twig template example that displays a "Welcome to Twig template" message. Let's take it one step at a time. Install The Twig template can be installed using Composer, Git, or PEAR. In this tutorial, we will use Composer to install Twig. To do so, we'll need to make a "composer.json" file. { "require" : { "twig/twig" : "1.*" } } From the console, run the following command . $ php composer.phar install This command will install Twig library. Configuration To use the Twig template, we should first configure it. To achieve this, we will write an index.php file which will configure the Twig autoloader and generate the Twig environment. We will render the Twig temp...