Skip to content

Commit

Permalink
Migrate from JUnit 4 to 5
Browse files Browse the repository at this point in the history
  • Loading branch information
arey committed Dec 29, 2023
1 parent 55e4bbc commit 30013da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<version.bull>1.7.3-jdk8</version.bull>
<version.datus>1.5.0</version.datus>
<version.remap>4.3.2</version.remap>
<version.junit>4.13.2</version.junit>
<version.junit>5.9.2</version.junit>
<version.slf4j>2.0.9</version.slf4j>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -112,8 +112,8 @@
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
package com.javaetmoi.benchmark.mapping.mapper;


import com.javaetmoi.benchmark.mapping.mapper.OrderMapper;
import com.javaetmoi.benchmark.mapping.model.dto.OrderDTO;
import com.javaetmoi.benchmark.mapping.model.entity.Order;
import com.javaetmoi.benchmark.mapping.model.entity.OrderFactory;
import org.junit.Test;
import org.junit.jupiter.api.Test;

import static org.junit.Assert.*;
import static org.junit.jupiter.api.Assertions.*;

public abstract class AbstractMapperTest {

Expand Down

0 comments on commit 30013da

Please sign in to comment.