Skip to content

Commit

Permalink
test: migrate EqualTest to JUnit 5 (#4485)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWitt authored Jan 14, 2022
1 parent 5f0a945 commit 149c7b6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/test/java/spoon/test/comparison/EqualTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/
package spoon.test.comparison;

import org.junit.Test;
import org.junit.jupiter.api.Test;
import spoon.Launcher;
import spoon.SpoonModelBuilder;
import spoon.reflect.code.CtComment;
Expand All @@ -32,11 +32,11 @@
import spoon.support.compiler.jdt.JDTSnippetCompiler;
import spoon.support.visitor.equals.EqualsVisitor;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.fail;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import static org.junit.jupiter.api.Assertions.assertSame;
import static org.junit.jupiter.api.Assertions.fail;

public class EqualTest {

Expand Down

0 comments on commit 149c7b6

Please sign in to comment.