Skip to content
This repository was archived by the owner on Jun 30, 2024. It is now read-only.

Commit

Permalink
test: adapt tests to junit 5
Browse files Browse the repository at this point in the history
  • Loading branch information
michalmac committed Dec 19, 2023
1 parent 26b696a commit 57b5c51
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
9 changes: 6 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,12 @@

<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
</dependency>
<dependency>
<groupId>org.matsim</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* created by jbischoff, 06.09.2018
*/

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

public class RunDoorToDoorDrtExampleTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* created by jbischoff, 06.09.2018
*/

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

public class RunStopBasedDrtExampleTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

package org.matsim.maas.taxi;

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

/**
* @author Michal Maciejewski (michalm)
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/matsim/maas/taxi/TaxiTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* created by jbischoff, 06.09.2018
*/

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

public class TaxiTest {

Expand Down

0 comments on commit 57b5c51

Please sign in to comment.