diff --git a/src/test/java/spoon/test/visibility/VisibilityTest.java b/src/test/java/spoon/test/visibility/VisibilityTest.java index c48f28ac470..e29d822d119 100644 --- a/src/test/java/spoon/test/visibility/VisibilityTest.java +++ b/src/test/java/spoon/test/visibility/VisibilityTest.java @@ -16,7 +16,11 @@ */ package spoon.test.visibility; -import org.junit.Test; + +import java.io.File; +import java.util.List; + +import org.junit.jupiter.api.Test; import spoon.Launcher; import spoon.OutputType; import spoon.SpoonAPI; @@ -36,13 +40,10 @@ import spoon.test.visibility.testclasses.A; import spoon.test.visibility.testclasses.A2; -import java.io.File; -import java.util.List; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertSame; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.junit.jupiter.api.Assertions.assertSame; +import static org.junit.jupiter.api.Assertions.assertTrue; import static spoon.testing.utils.ModelUtils.build; import static spoon.testing.utils.ModelUtils.canBeBuilt;