Skip to content

Commit

Permalink
refactor(ArraysTest): migrate to junit 5 (#4394)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWitt authored Jan 5, 2022
1 parent ca72cee commit cb2477e
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions src/test/java/spoon/test/arrays/ArraysTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
*/
package spoon.test.arrays;

import org.junit.Test;

import java.lang.reflect.Array;
import java.util.List;

import org.junit.jupiter.api.Test;
import spoon.Launcher;
import spoon.reflect.code.CtInvocation;
import spoon.reflect.code.CtLiteral;
Expand All @@ -30,14 +34,11 @@
import spoon.test.arrays.testclasses.VaragParam;
import spoon.testing.utils.ModelUtils;

import java.lang.reflect.Array;
import java.util.List;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;
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.assertSame;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;
import static spoon.testing.utils.ModelUtils.build;

public class ArraysTest {
Expand Down

0 comments on commit cb2477e

Please sign in to comment.