File tree 3 files changed +120
-7
lines changed
testing-modules/testing-libraries-2
main/java/com/baeldung/sonarqubeandjacoco/product
test/java/com/baeldung/sonarqubeandjacoco/product
3 files changed +120
-7
lines changed Original file line number Diff line number Diff line change 12
12
<relativePath >../</relativePath >
13
13
</parent >
14
14
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
+
15
24
<dependencies >
16
25
<dependency >
17
26
<groupId >org.assertj</groupId >
72
81
</dependencies >
73
82
74
83
<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 >
75
114
<finalName >testing-libraries</finalName >
76
115
<resources >
77
116
<resource >
81
120
</resources >
82
121
</build >
83
122
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
+
91
124
</project >
Original file line number Diff line number Diff line change
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 number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments