Skip to content

Commit

Permalink
chore: switch to junit5 (#2939)
Browse files Browse the repository at this point in the history
  • Loading branch information
monperrus authored and surli committed Apr 10, 2019
1 parent f6e87f3 commit 4782d93
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions spoon-pom/pom.xml
Expand Up @@ -39,11 +39,17 @@

<!-- we all depend on Junit with scope=test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.4.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.4.2</version>
<scope>test</scope>
</dependency>
</dependencies>

<organization>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/spoon/test/processing/ProcessingTest.java
Expand Up @@ -51,7 +51,7 @@
import java.util.List;
import java.util.Map;

import static org.junit.Assert.assertArrayEquals;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotEquals;
Expand Down

0 comments on commit 4782d93

Please sign in to comment.