Skip to content

Commit 884dc2a

Browse files
committed
test: Switched from Hamcrest to AssertJ
1 parent 75d3201 commit 884dc2a

File tree

3 files changed

+184
-210
lines changed

3 files changed

+184
-210
lines changed

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<maven.compiler.source>8</maven.compiler.source>
3232
<maven.compiler.target>8</maven.compiler.target>
3333
<junit.version>5.8.2</junit.version>
34-
<hamcrest.version>2.2</hamcrest.version>
34+
<assertj.version>3.21.0</assertj.version>
3535
<spotless.version>2.12.2</spotless.version>
3636
<google-java-format.version>1.7</google-java-format.version>
3737
</properties>
@@ -44,9 +44,9 @@
4444
<scope>test</scope>
4545
</dependency>
4646
<dependency>
47-
<groupId>org.hamcrest</groupId>
48-
<artifactId>hamcrest-library</artifactId>
49-
<version>${hamcrest.version}</version>
47+
<groupId>org.assertj</groupId>
48+
<artifactId>assertj-core</artifactId>
49+
<version>${assertj.version}</version>
5050
<scope>test</scope>
5151
</dependency>
5252
</dependencies>

0 commit comments

Comments
 (0)