Migrate mapstruct core tests to JUnit Jupiter

This commit is contained in:
Filip Hrisafov 2021-04-25 12:39:04 +02:00
parent 2d66f08ee5
commit 627be53088
2 changed files with 3 additions and 3 deletions

View File

@ -22,8 +22,8 @@
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>

View File

@ -7,7 +7,7 @@ package org.mapstruct.factory;
import static org.assertj.core.api.Assertions.assertThat;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.mapstruct.test.model.Foo;
import org.mapstruct.test.model.SomeClass;