Skip to content

Commit 13bc134

Browse files
committed
add mockito
1 parent 4997b05 commit 13bc134

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
<junit-platform.version>5.8.2</junit-platform.version>
4343
<assertj-core.version>3.22.0</assertj-core.version>
4444
<maven-testing.version>2.22.0</maven-testing.version>
45+
<mockito.version>4.5.1</mockito.version>
4546
</properties>
4647

4748
<dependencies>
@@ -79,6 +80,18 @@
7980
<version>${assertj-core.version}</version>
8081
<scope>test</scope>
8182
</dependency>
83+
<dependency>
84+
<groupId>org.mockito</groupId>
85+
<artifactId>mockito-core</artifactId>
86+
<version>${mockito.version}</version>
87+
<scope>test</scope>
88+
</dependency>
89+
<dependency>
90+
<groupId>org.mockito</groupId>
91+
<artifactId>mockito-junit-jupiter</artifactId>
92+
<version>${mockito.version}</version>
93+
<scope>test</scope>
94+
</dependency>
8295
</dependencies>
8396

8497
<build>

0 commit comments

Comments
 (0)