Skip to content

Commit

Permalink
Migrated kie api to JUnit5
Browse files Browse the repository at this point in the history
  • Loading branch information
pibizza committed Dec 3, 2024
1 parent f34f704 commit 466cfc9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions kie-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,10 @@
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion kie-api/src/test/java/org/kie/api/KModuleXSDTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import javax.xml.validation.SchemaFactory;
import javax.xml.validation.Validator;

import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;

Expand Down
2 changes: 1 addition & 1 deletion kie-api/src/test/java/org/kie/api/io/ResourceTypeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

import java.util.List;

import org.junit.Test;
import org.junit.jupiter.api.Test;

import static org.assertj.core.api.Assertions.assertThat;

Expand Down

0 comments on commit 466cfc9

Please sign in to comment.