Skip to content

Commit a3ff995

Browse files
Add Mockito dependencies for unit testing
Add mockito-core and mockito-junit-jupiter dependencies to enable mocking support in unit tests. These libraries provide integration with JUnit 5 for better test isolation and mock object management.
1 parent 77c743f commit a3ff995

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,18 @@
6969
<version>4.13.1</version>
7070
<scope>compile</scope>
7171
</dependency>
72+
<dependency>
73+
<groupId>org.mockito</groupId>
74+
<artifactId>mockito-core</artifactId>
75+
<version>4.11.0</version>
76+
<scope>test</scope>
77+
</dependency>
78+
<dependency>
79+
<groupId>org.mockito</groupId>
80+
<artifactId>mockito-junit-jupiter</artifactId>
81+
<version>4.11.0</version>
82+
<scope>test</scope>
83+
</dependency>
7284
</dependencies>
7385

7486
<build>

0 commit comments

Comments
 (0)