Skip to content

Commit c0f8ed1

Browse files
authored
Code Coverage with SonarQube and Jacoco (eugenp#10674)
* Code Coverage with SonarQube and Jacoco * SonarQube and Jacoco * Delete SonarQube and Jacoco From the Root directory * SonarQube and JaCoCo * SonarQube And JaCoCo * BAEL-4636 : Code Coverage with SonarQube and Jacoco * Shifted to testing-modules/testing-libraries-2 * Removing this project to make a single project * Code Coverage with SonarQube and Jacoco * Formatting in pom.xml file * Delete Directory * Delete unused directory * SonarQube And JaCoCo * SonarQube And JaCoCo
1 parent 84934cf commit c0f8ed1

File tree

3 files changed

+120
-7
lines changed

3 files changed

+120
-7
lines changed

testing-modules/testing-libraries-2/pom.xml

+40-7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@
1212
<relativePath>../</relativePath>
1313
</parent>
1414

15+
<properties>
16+
<jacoco.version>0.8.6</jacoco.version>
17+
<system-rules.version>1.19.0</system-rules.version>
18+
<system-lambda.version>1.0.0</system-lambda.version>
19+
<system-stubs.version>1.1.0</system-stubs.version>
20+
<junit.jupiter.version>5.6.2</junit.jupiter.version>
21+
<assertj-core.version>3.16.1</assertj-core.version>
22+
</properties>
23+
1524
<dependencies>
1625
<dependency>
1726
<groupId>org.assertj</groupId>
@@ -72,6 +81,36 @@
7281
</dependencies>
7382

7483
<build>
84+
<plugins>
85+
<plugin>
86+
<artifactId>maven-war-plugin</artifactId>
87+
<version>2.4</version>
88+
<configuration>
89+
<failOnMissingWebXml>false</failOnMissingWebXml>
90+
</configuration>
91+
</plugin>
92+
<!-- Plugins for JACOCO Coverage report -->
93+
<plugin>
94+
<groupId>org.jacoco</groupId>
95+
<artifactId>jacoco-maven-plugin</artifactId>
96+
<version>${jacoco.version}</version>
97+
<executions>
98+
<execution>
99+
<id>jacoco-initialize</id>
100+
<goals>
101+
<goal>prepare-agent</goal>
102+
</goals>
103+
</execution>
104+
<execution>
105+
<id>jacoco-site</id>
106+
<phase>package</phase>
107+
<goals>
108+
<goal>report</goal>
109+
</goals>
110+
</execution>
111+
</executions>
112+
</plugin>
113+
</plugins>
75114
<finalName>testing-libraries</finalName>
76115
<resources>
77116
<resource>
@@ -81,11 +120,5 @@
81120
</resources>
82121
</build>
83122

84-
<properties>
85-
<system-rules.version>1.19.0</system-rules.version>
86-
<system-lambda.version>1.0.0</system-lambda.version>
87-
<system-stubs.version>1.1.0</system-stubs.version>
88-
<junit.jupiter.version>5.6.2</junit.jupiter.version>
89-
<assertj-core.version>3.16.1</assertj-core.version>
90-
</properties>
123+
91124
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
package com.baeldung.sonarqubeandjacoco.product;
2+
3+
public class Product {
4+
5+
private int id;
6+
private String name;
7+
private int units;
8+
private double price;
9+
10+
public Product() {
11+
super();
12+
}
13+
14+
public Product(int id, String name, int units, double price) {
15+
super();
16+
this.id = id;
17+
this.name = name;
18+
this.units = units;
19+
this.price = price;
20+
}
21+
22+
public int getId() {
23+
return id;
24+
}
25+
26+
public void setId(int id) {
27+
this.id = id;
28+
}
29+
30+
public String getName() {
31+
return name;
32+
}
33+
34+
public void setName(String name) {
35+
this.name = name;
36+
}
37+
38+
public int getUnits() {
39+
return units;
40+
}
41+
42+
public void setUnits(int units) {
43+
this.units = units;
44+
}
45+
46+
public double getPrice() {
47+
return price;
48+
}
49+
50+
public void setPrice(double price) {
51+
this.price = price;
52+
}
53+
54+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package com.baeldung.sonarqubeandjacoco.product;
2+
3+
import static org.junit.Assert.assertNotNull;
4+
import static org.junit.Assert.assertNull;
5+
6+
import org.junit.Test;
7+
8+
import com.baeldung.sonarqubeandjacoco.product.Product;
9+
10+
public class ProductUnitTest {
11+
12+
@Test
13+
public void test() {
14+
Product product = new Product();
15+
product.setId(1);
16+
assertNull(product.getName());
17+
assert (product.getId() == 1);
18+
}
19+
20+
@Test
21+
public void testProduct() {
22+
Product product = new Product(1, "product", 1, 2.0);
23+
assertNotNull(product.getName());
24+
}
25+
26+
}

0 commit comments

Comments
 (0)